Javascript Cache
temporary storage to store frequently accessed data
Example API:
SECONDS=1
cache.set('someData', 'value', 3600 * SECONDS)
cache.get('someData')
temporary storage to store frequently accessed data
Example API:
SECONDS=1
cache.set('someData', 'value', 3600 * SECONDS)
cache.get('someData')