Stores the object against the given key
Parameters:
, the key for storing the object, has to be unique
, the object to be persisted
37 38 39
# File 'lib/datastore.rb', line 37 def put(key, value) @data_map[key] = value end