Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the advantage of lucene's Compound File

Tags:

lucene

what is diference between a single file like lucene's Compound File and muti file for dependent index type?

like image 955
user1010434 Avatar asked Oct 07 '22 01:10

user1010434


1 Answers

it uses less files to keep the index, so it can help avoid the Too many open files issue (that in unix you handle with ulimit).

It is also slower.

like image 117
Persimmonium Avatar answered Oct 13 '22 11:10

Persimmonium