Re: Solr Plugins Documentation

2018-02-19 Thread Emir Arnautović
Hi, It is not query parser but update request processor, but you can find simple buildable Solr plugin on https://github.com/od-bits/solr-multivaluefield-processor . You can also find a related blogpost that has some details how to buil

RE: Solr Plugins Documentation

2018-02-17 Thread Howe, David
You will need to use your favourite java tooling to take the code that you have written and package it as a jar file. In my case, we use maven so I have set my custom extensions up as a maven project, and in my POM file (which tells maven what dependencies your project has), I declare:

Solr Plugins Documentation

2018-02-16 Thread ~$alpha`
I got a basic understanding of how we can create the custom Solr plugin as illustrated in link https://dzone.com/articles/create-custom-solr-queryparser But I don't know the next step as for how can we create a jar. like do we need to import Solr source code ?? It would be of great help if someon