View Source API Reference SuperCache v0.6.1
Modules
SeperCache is a library support for caching data in memory. The library is based on Ets table and use some function from :ets for making it easy & friendly to use. SuperCache support auto scale based on number of cpu cores and easy to use. Type of data is supported is tuple, other type of data can put in a tuple an storage in SuperCache. Current version is not support for replicating data to multi nodes in Elixir cluster.
Key-Value(KV) database in memory. Each KV name is store in a partition. Can use multiple KV cache by using different KV name. This is global KV cache any process can access. The KV is store in with cache. Need to start SuperCache.start!/1 before using this module. Ex
A queue based on cache. Data in queue stored in cache. Can handle multiple queue with different name. A queue is a FIFO data structure. This is global data, any process can access to queue data. Need to start SuperCache.start!/1 before using this module. Ex
Stack module helps to easy to use stack data structure. This is global stack, any process can access to stack data. Can handle multiple stack with different name. Need to start SuperCache.start!/1 before using this module.