| | |
| | | |
| | | //Thread local area to store per thread cursors. |
| | | private final ThreadLocal<Cursor> curLocal = new ThreadLocal<Cursor>(); |
| | | private final ImportIDSet newImportIDSet = new ImportIDSet(indexEntryLimit, |
| | | indexEntryLimit, maintainCount); |
| | | private final ImportIDSet newImportIDSet; |
| | | |
| | | /** |
| | | * Create a new index object. |
| | |
| | | this.indexEntryLimit = indexEntryLimit; |
| | | this.cursorEntryLimit = cursorEntryLimit; |
| | | this.maintainCount = maintainCount; |
| | | |
| | | this.newImportIDSet = new ImportIDSet(indexEntryLimit, |
| | | indexEntryLimit, maintainCount); |
| | | DatabaseConfig dbNodupsConfig = new DatabaseConfig(); |
| | | |
| | | if(env.getConfig().getReadOnly()) |