Class BaseQueryTuner
- java.lang.Object
-
- io.ebeaninternal.server.autotune.service.BaseQueryTuner
-
public class BaseQueryTuner extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.ebeaninternal.server.querydefn.OrmQueryDetailget(String key)Return the detail currently used for tuning.Collection<TunedQueryInfo>getAll()Return all the current tuned query entries.Set<String>keySet()Return the keys as a set.voidload(String key, TunedQueryInfo queryInfo)Load the tuned query information.voidput(Origin origin)Put a query tuning entry.
-
-
-
Method Detail
-
getAll
public Collection<TunedQueryInfo> getAll()
Return all the current tuned query entries.
-
load
public void load(String key, TunedQueryInfo queryInfo)
Load the tuned query information.
-
get
public io.ebeaninternal.server.querydefn.OrmQueryDetail get(String key)
Return the detail currently used for tuning. This returns null if there is currently no matching tuning.
-
-