I'm learning elasticsearch now.
This slide is old, new version is here. -> http://blog.johtani.info/blog/2013/08/30/hold-first-elasticsearch-meetup-in-japan/
7. Codec
? Codecが差し替え可能
?Standard: Lucene4.0 index format
?“Appending” works with append-only filesystems (such as Hadoop DFS)
?“Memory” writes the entire terms+postings as an FST read into RAM
?“Pulsing” inlines the postings for low-frequency terms into the term
dictionary
?“SimpleText” writes all files in plain-text for easy debugging/transparency
8. NRT
? Near Real Time search
?softCommit ? (hard)Commit
softCommitは、インデックスをリフレッシュして、
更新ドキュメントをすぐに検索可能にします。
JVMクラッシュなどがある場合は、最終ハードコミッ
ト時点に戻ります。
それまでの更新は失われます。
9. Realtime-get
? 未コミットのドキュメントを取得するハンドラ
? Solr as Key Value Store