Skip to content

Instantly share code, notes, and snippets.

@tsxn26
tsxn26 / native_script_example.txt
Created June 23, 2011 22:12
Using Native Scripts in Elastic Search
1) Extend AbstractFloatSearchScript:
package com.example.elastic;
import org.elasticsearch.script.AbstractFloatSearchScript;
import static java.lang.Math.*;
public class MySearchScript extends AbstractFloatSearchScript {
@Override
@tsxn26
tsxn26 / CustomScript.java.v1
Created June 16, 2011 23:53
Elastic Search Custom Script
package com.thomas;
import org.elasticsearch.script.AbstractFloatSearchScript;
import static java.lang.Math.max;
import static java.lang.Math.pow;
/**
* Created by IntelliJ IDEA.
* User: thomas