Close
dtSearch Engine API for Java
IndexCache.setAutoCloseTime Method

Number of seconds before an unused index can be closed automatically.

Syntax
Java
public void setAutoCloseTime(int v);
Parameters
Description
int v
Number of seconds to keep an unused index open before it will be closed.

Use AutoCloseTime to have the cache automatically shrink when idle. On each access to the cache, the last-used time for each index is compared to autoCloseTime and, if the index has not been used for a sufficient period of time, the index is closed and removed from the cache. 

The cache does not have its own thread to implement AutoCloseTime, so it only checks AutoCloseTime when the cache is accessed for any reason.