fix #1123 update indexer.webfs.max.document.cache.size
This commit is contained in:
parent
864a02068a
commit
1967e387e4
2 changed files with 4 additions and 4 deletions
|
@ -282,7 +282,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|||
/** The key of the configuration. e.g. 10000 */
|
||||
String INDEXER_WEBFS_UPDATE_INTERVAL = "indexer.webfs.update.interval";
|
||||
|
||||
/** The key of the configuration. e.g. 100 */
|
||||
/** The key of the configuration. e.g. 20 */
|
||||
String INDEXER_WEBFS_MAX_DOCUMENT_CACHE_SIZE = "indexer.webfs.max.document.cache.size";
|
||||
|
||||
/** The key of the configuration. e.g. 10485760 */
|
||||
|
@ -2103,14 +2103,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|||
|
||||
/**
|
||||
* Get the value for the key 'indexer.webfs.max.document.cache.size'. <br>
|
||||
* The value is, e.g. 100 <br>
|
||||
* The value is, e.g. 20 <br>
|
||||
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
||||
*/
|
||||
String getIndexerWebfsMaxDocumentCacheSize();
|
||||
|
||||
/**
|
||||
* Get the value for the key 'indexer.webfs.max.document.cache.size' as {@link Integer}. <br>
|
||||
* The value is, e.g. 100 <br>
|
||||
* The value is, e.g. 20 <br>
|
||||
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
||||
* @throws NumberFormatException When the property is not integer.
|
||||
*/
|
||||
|
|
|
@ -147,7 +147,7 @@ indexer.favorite.count.enabled=true
|
|||
indexer.webfs.commit.margin.time=5000
|
||||
indexer.webfs.max.empty.list.count=360
|
||||
indexer.webfs.update.interval=10000
|
||||
indexer.webfs.max.document.cache.size=100
|
||||
indexer.webfs.max.document.cache.size=20
|
||||
indexer.webfs.max.document.request.size=10485760
|
||||
indexer.data.max.document.cache.size=5
|
||||
indexer.data.max.document.request.size=10485760
|
||||
|
|
Loading…
Add table
Reference in a new issue