Solr に次のドキュメントを保存しています。
doc {
id: string; // this is a unique string that looks like an md5 result
job_id: string; // this also looks like an md5 result -- this is not unique
doc_id: number; // this is a long number -- this is not unique
text: string; // this is stored, indexed text -- this is not unique
}
ここでやりたいことは、テキスト foo を含むドキュメント (doc_id) の数を数えることです。したがって、これが SQL の場合、次のようなものを発行したいと思います。
SELECT count(distinct doc_id)
FROM Doc
WHERE text like '%foo%';
前もって感謝します。