Item cache
All the performance benefits of a cache system when working with Items.
Last updated
Was this helpful?
All the performance benefits of a cache system when working with Items.
Last updated
Was this helpful?
Activating cache for your class is as easy as setting the loadFromIdMethod
of your class to queryDatabaseCache
:
You can now add some other optional properties for caching if you want to change the defaults:
cacheProviderName
The name of the cache provider to use. Default: engine
cacheTtl
: The TTL to use when caching data for this Item. Default: CACHE_TTL_NORMAL
Just like this, whenever you're loading a Movie
, it will be loaded extremely fast from the cache without any actual request to the database, as long as it has been loaded before at least once, and the TTL expiration time hasn't yet arrived.
cacheSpecificPrefix
: The to use when caching data for this item. Default: none
If you need to remove an item from cache, use the method, like this:
To give you maximum control, the cache of an Item is not automatically cleared after doing an operation, so you have to remember to do also if you want the changes to be effective immediately if someone requests the same Item, so they don't have to wait for the TTL expiration.