Class QueryCache

java.lang.Object
com.j_spaces.jdbc.QueryCache
Direct Known Subclasses:
ConcurrentBoundedCache, ConcurrentSoftCache

public abstract class QueryCache extends Object
Caches JDBC queries by their string representation
Since:
6.1
Author:
anna
  • Constructor Details

    • QueryCache

      public QueryCache()
  • Method Details

    • create

      public static QueryCache create()
    • addQueryToCache

      public abstract void addQueryToCache(String statement, Query query)
    • getQueryFromCache

      public abstract Query getQueryFromCache(String statement)
    • clear

      public abstract void clear()