Package ubic.gemma.persistence.service
Interface CachedFilteringDao<O extends Identifiable>
-
- All Superinterfaces:
BaseDao<O>
,FilteringDao<O>
- All Known Subinterfaces:
ArrayDesignDao
,CachedFilteringVoEnabledDao<O,VO>
,ExpressionExperimentDao
- All Known Implementing Classes:
AbstractCuratableDao
,AbstractQueryFilteringVoEnabledDao
,ArrayDesignDaoImpl
,CompositeSequenceDaoImpl
,ExpressionExperimentDaoImpl
,GeneDaoImpl
,TaxonDaoImpl
public interface CachedFilteringDao<O extends Identifiable> extends FilteringDao<O>
- Author:
- poirigui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
countWithCache(Filters filters)
List<Long>
loadIdsWithCache(Filters filters, Sort sort)
List<O>
loadWithCache(Filters filters, Sort sort)
Slice<O>
loadWithCache(Filters filters, Sort sort, int offset, int limit)
-
Methods inherited from interface ubic.gemma.persistence.service.BaseDao
countAll, create, create, find, findOrCreate, getElementClass, getIdentifierPropertyName, load, load, loadAll, loadReference, loadReference, remove, remove, remove, save, save, update, update
-
Methods inherited from interface ubic.gemma.persistence.service.FilteringDao
count, getFilter, getFilter, getFilter, getFilter, getFilter, getFilter, getFilterableProperties, getFilterablePropertyAllowedValues, getFilterablePropertyDescription, getFilterablePropertyIsUsingSubquery, getFilterablePropertyType, getSort, load, load, loadIds
-
-
-
-
Method Detail
-
loadIdsWithCache
List<Long> loadIdsWithCache(@Nullable Filters filters, @Nullable Sort sort)
- See Also:
FilteringDao.loadIds(Filters, Sort)
-
loadWithCache
List<O> loadWithCache(@Nullable Filters filters, @Nullable Sort sort)
- See Also:
FilteringDao.load(Filters, Sort)
-
loadWithCache
Slice<O> loadWithCache(@Nullable Filters filters, @Nullable Sort sort, int offset, int limit)
-
countWithCache
long countWithCache(@Nullable Filters filters)
- See Also:
FilteringDao.count(Filters)
-
-