Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
/ play-solr Public archive

PlayFramework 2.x module to simplify indexing and searching documents with Apache Solr (Lucene)

Notifications You must be signed in to change notification settings

fizzed/play-solr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Apache Solor (Lucene) for PlayFramework

Overview

Play Framework 2.x module to simplify indexing and searching documents with Apache Solr (Lucene).

Module is used in production but this repo does not yet contain a polished example demonstrating its use.

Compatibility matrix

PlayFramework version Module version
2.3.x 1.2.1
2.2.x 1.1.0
2.1.x 1.0.0

Usage

This module is published to Maven Central. You will need to include the module in your dependencies list, in build.sbt or Build.scala file:

build.sbt

libraryDependencies ++= Seq(
  "com.fizzed" %% "fizzed-play-module-solr" % "1.2.1"
)

Build.scala

import sbt._
import Keys._
import play.Project._

object ApplicationBuild extends Build {

  val appName         = "sample"
  val appVersion      = "1.0-SNAPSHOT"

  val appDependencies = Seq(
    javaCore,
    javaJdbc,
    javaEbean,
    "com.fizzed" %% "fizzed-play-module-solr" % "1.2.1"
  )
  
  ...
}

About

PlayFramework 2.x module to simplify indexing and searching documents with Apache Solr (Lucene)

Resources

Stars

Watchers

Forks

Packages

No packages published