aboutsummaryrefslogtreecommitdiff
path: root/solr-8.1.1/server/solr/dash/conf/schema.xml~
diff options
context:
space:
mode:
Diffstat (limited to 'solr-8.1.1/server/solr/dash/conf/schema.xml~')
-rw-r--r--solr-8.1.1/server/solr/dash/conf/schema.xml~23
1 files changed, 0 insertions, 23 deletions
diff --git a/solr-8.1.1/server/solr/dash/conf/schema.xml~ b/solr-8.1.1/server/solr/dash/conf/schema.xml~
deleted file mode 100644
index 3b2addf78..000000000
--- a/solr-8.1.1/server/solr/dash/conf/schema.xml~
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<schema name="default-config" version="1.6">
- <uniqueKey>id</uniqueKey>
- <fieldType name="string" class="solr.StrField" sortMissingLast="true" docValues="true"/>
- <fieldType name="text" class="solr.TextField">
- <analyzer type="index">
- <tokenizer class="solr.StandardTokenizerFactory"/>
- <filter class="solr.StopFilterFactory" words="stopwords.txt"/>
- <filter class="solr.LowerCaseFilterFactory"/>
- <filter class="solr.PorterStemFilterFactory"/>
- <filter class="solr.EdgeNGramFilterFactory" minGramSize="3" maxGramSize="12"/>
- </analyzer>
- <analyzer type="query">
- <tokenizer class="solr.StandardTokenizerFactory"/>
- <filter class="solr.StopFilterFactory" words="stopwords.txt"/>
- <filter class="solr.LowerCaseFilterFactory"/>
- <filter class="solr.PorterStemFilterFactory"/>
- </analyzer>
- </fieldType>
- <field name="data" type="text" indexed="true" stored="true" uninvertible="false"/>
- <field name="id" type="string" indexed="true" stored="true" uninvertible="false" required="true"/>
- <field name="_version_" type="long" indexed="false" stored="false" multiValued="false"/>
-</schema>