Giter VIP home page Giter VIP logo

elasticsearch-osem's Introduction

ElasticSearch OSEM

Object Search Engine Mapper for ElasticSearch

Usage

Configure your model with the annotations:

import org.elasticsearch.osem.annotations.Indexable;
import org.elasticsearch.osem.annotations.Searchable;

@Searchable
public class Tweet {
    private String message;
    private String user;
    private Date date;

    public String getMessage() { return message; }

    public void setMessage(String message) { this.message = message; }

    public String getUser() { return user; }

    public void setUser(String user) { this.user = user; }

    public Date getDate() { return date; }

    @Indexable(indexName = "post_date")
    public void setDate(Date date) { this.date = date; }
}

Configure an ObjectContext instance with your(s) class(es):

import org.elasticsearch.osem.core.ObjectContext;
import org.elasticsearch.osem.core.ObjectContextFactory;

...

ObjectContext context = ObjectContextFactory.create();
context.add(Tweet.class);

Then you can write objects to the ElasticSearch client:

node.client().prepareIndex("twitter", "tweet", "1").setSource(context.write(tweet)).execute().actionGet();

And read them from search hits:

for (SearchHit hit : searchResponse.getHits()) {
    Tweet t = context.read(hit);
}

You can view a full example in ObjectContextIntegrationTest.java

Maven Repository

<dependencies>
  ...
  <dependency>
    <groupId>org.elasticsearch</groupId>
    <artifactId>elasticsearch-osem</artifactId>
    <version>0.1-SNAPSHOT</version>
  </dependency>
  ...
</dependencies>

<repositories>
  ...
  <repository>
    <id>aloiscochard snapshots</id>
    <url>http://orexio.org/~alois/repositories/snapshots</url>
  </repository>
  ...
</repositories>

elasticsearch-osem's People

Contributors

aloiscochard avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.