Skip to content

Instantly share code, notes, and snippets.

View vitman's full-sized avatar

vitman

View GitHub Profile
@vitman
vitman / schema.xml
Created March 23, 2017 14:13
Packagist SOLR 6 Configs
<?xml version="1.0" encoding="UTF-8" ?>
<schema name="packagist" version="1.4">
<types>
<!-- The StrField type is not analyzed, but indexed/stored verbatim. -->
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
<!-- boolean type: "true" or "false" -->
<fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true"/>
<!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
<fieldtype name="binary" class="solr.BinaryField"/>