View Source Cache.Sandbox (elixir_cache v0.1.0)

This module is the adapter used by the SandboxRegistry to mock out all the other adapters therefore it must implement all features shared across all adapters. It uses a basic Agent and shouldn't be used in production. It's good for dev & test to avoid needing dependencies

Link to this section Summary

Link to this section Functions

Returns a specification to start this module under a supervisor.

See Supervisor.

Link to this function

hash_delete(cache_name, key, hash_key, opts)

View Source
Link to this function

hash_get(cache_name, key, hash_key, opts)

View Source
Link to this function

hash_get_all(cache_name, key, opts)

View Source
Link to this function

hash_set(cache_name, key, hash_key, value, opts)

View Source
Link to this function

hash_set_many(cache_name, key, hash_key_value_tuples, opts)

View Source
Link to this function

hash_values(cache_name, key, opts)

View Source