979899100101102103104105106107
for (IDGeoRecord newRecord: newRecords) { inMemoryIndex.add(newRecord); } if (inMemoryIndex.size() > config.getMaxIndexSize()) { throw new IndexTooLargeException(indexName, inMemoryIndex.size(), config.getMaxIndexSize()); } flushInMemoryIndex(); }