Skip to content

Instantly share code, notes, and snippets.

View elitzer2's full-sized avatar

Lawrence Elitzer elitzer2

View GitHub Profile
@elitzer2
elitzer2 / solrconfig.xml
Created March 1, 2017 16:22
Solr config file for version 6.4.1
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@elitzer2
elitzer2 / schema.xml
Created March 1, 2017 15:46
Solr Schema File
<?xml version="1.0" encoding="UTF-8"?>
<schema name="example-basic" version="1.6">
<fieldType name="ancestor_path" class="solr.TextField">
<analyzer type="index">
<tokenizer class="solr.KeywordTokenizerFactory"/>
</analyzer>
<analyzer type="query">
<tokenizer class="solr.PathHierarchyTokenizerFactory" delimiter="/"/>
</analyzer>
</fieldType>