Direct Java API
Go funky with the Redis extension
RedisGetProvider()
RedisGetProvider()// Get the Ortus Java Provider for the default object cache
myProvider = RedisGetProvider();
// Get the Ortus Java Provider for the queryStorage cache
myProvider = RedisGetProvider( "queryStorage" );
// Get all keys in the cache as a java.util.List
keys = myProvider.keys();
// Get all the values in the cache as a java.util.List
values = myProvider.values();RedisGetConnectionPool()
RedisGetConnectionPool()Last updated
Was this helpful?