List of usage examples for com.liferay.portal.kernel.cache.index PortalCacheIndexer PortalCacheIndexer
public PortalCacheIndexer(IndexEncoder<I, K> indexEncoder, PortalCache<K, V> portalCache)
From source file:com.liferay.journal.util.impl.JournalContentImpl.java
License:Open Source License
@Reference(unbind = "-") protected void setMultiVMPool(MultiVMPool multiVMPool) { _portalCache = (PortalCache<JournalContentKey, JournalArticleDisplay>) multiVMPool .getPortalCache(CACHE_NAME); _portalCacheIndexer = new PortalCacheIndexer<>(new JournalContentKeyIndexEncoder(), _portalCache); }