#637 - ServerCacheType

This commit is contained in:
Robin Bygrave
2016-04-06 21:39:39 +12:00
parent 7c11acaf89
commit b4cd66e28c
@@ -0,0 +1,27 @@
package com.avaje.ebean.cache;
/**
* The type of L2 caches.
*/
public enum ServerCacheType {
/**
* Bean cache.
*/
BEAN,
/**
* Natural key cache.
*/
NATURAL_KEY,
/**
* Collection Ids for Many properties.
*/
COLLECTION_IDS,
/**
* Query cache.
*/
QUERY
}