Mark an item as available from the cache
Item's key
Get the number of items currently in the cache
The number of items currently in the cache
Remove an item from the cache
Item's key
Access an item by its key. Each call to get() should be predated by a call to has() to check if the item is in the cache.
Item's key
The values of the item with the given key, or null if it was not found
Test if the cache contains an item with a given key
Item's key
True if the cache contains the item with the given key, False otherwise
Update an item into the cache
Item's key
Item
ID of the writer
Generated using TypeDoc
An async cache is cache which stores collections of items that are built over time. Writers will call the update and commit method to update the cache content & mark items as available.
Thomas Minier