0

インデックス付きドキュメントがsolr検索で保存されている場所を知りたいです。

I have installed solr server at C:\solr and using solr 1.4. By making 
necessary changes in the configuration files i am able to search data 
using solr client.

そのインデックス付きドキュメントがどこに保存されているのか疑問に思っています。

4

1 に答える 1

2

Indexed documents are saved in index, which is located in solr/data/index folder.

Here you can find more details about those files.

From LuceneFAQ:

The index database is composed of 'segments' each stored in a separate file. When you add documents to the index, new segments may be created. These are periodically merged together.

EDIT:
If you want to examine contents of your index and tweak or troubleshoot your schema (analysis), see instructions about the greatest Lucene tool ever, called Luke in this recent post.

于 2012-05-04T07:54:14.920 に答える