mirror of https://github.com/apache/lucene.git
SOLR-5210: add block join support to example
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1520081 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5fa6cd3fec
commit
32803cb94f
|
@ -107,6 +107,11 @@
|
|||
-->
|
||||
|
||||
<field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" />
|
||||
|
||||
<!-- points to the root document of a block of nested documents -->
|
||||
<field name="_root_" type="string" indexed="true" stored="false"/>
|
||||
|
||||
|
||||
<field name="sku" type="text_en_splitting_tight" indexed="true" stored="true" omitNorms="true"/>
|
||||
<field name="name" type="text_general" indexed="true" stored="true"/>
|
||||
<field name="manu" type="text_general" indexed="true" stored="true" omitNorms="true"/>
|
||||
|
|
|
@ -514,6 +514,13 @@
|
|||
initialSize="512"
|
||||
autowarmCount="0"/>
|
||||
|
||||
<!-- custom cache currently used by block join -->
|
||||
<cache name="perSegFilter"
|
||||
class="solr.search.LRUCache"
|
||||
size="10"
|
||||
initialSize="0"
|
||||
autowarmCount="10" />
|
||||
|
||||
<!-- Field Value Cache
|
||||
|
||||
Cache used to hold field values that are quickly accessible
|
||||
|
|
Loading…
Reference in New Issue