# File lib/moneta/adapters/datamapper.rb, line 61
      def create(key, value, options = {})
        context do
          Store.create(:k => key, :v => value)
          true
        end
      rescue
        # FIXME: This catches too many errors
        # it should only catch a not-unique-exception
        false
      end