lucene/solr/contrib/scripting
Eric Pugh cf5db8d651
SOLR-14067: v3 Create /contrib/scripting module with ScriptingUpdateProcessor (#2215)
* Creating Scripting contrib module to centralize the less secure code related to scripts.

* tweak the changelog and update notice to explain why the name changed and the security posture thinking

* the test script happens to be a currency.xml, which made me think we were doing something specific to currency types, but instead any xml formatted file will suffice for the test.

* drop the ing, and be more specific on the name of the ref guide page

* use the same name everywhere

Co-authored-by: David Smiley <dsmiley@apache.org>
2021-01-21 13:32:46 -05:00
..
src SOLR-14067: v3 Create /contrib/scripting module with ScriptingUpdateProcessor (#2215) 2021-01-21 13:32:46 -05:00
README.md SOLR-14067: v3 Create /contrib/scripting module with ScriptingUpdateProcessor (#2215) 2021-01-21 13:32:46 -05:00
build.gradle SOLR-14067: v3 Create /contrib/scripting module with ScriptingUpdateProcessor (#2215) 2021-01-21 13:32:46 -05:00

README.md

Welcome to Apache Solr Scripting!

Introduction

The Scripting contrib module pulls together various scripting related functions.

Today, the ScriptUpdateProcessorFactory allows Java scripting engines to support scripts written in languages such as JavaScript, Ruby, Python, and Groovy to be used during Solr document update processing, allowing dramatic flexibility in expressing custom document processing before being indexed. It exposes hooks for commit, delete, etc, but add is the most common usage. It is implemented as an UpdateProcessor to be placed in an UpdateChain.

Getting Started

For information on how to get started please see: