Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 660 Bytes

README.rst

File metadata and controls

35 lines (24 loc) · 660 Bytes

clojure-solr

Clojure bindings for Apache Solr.

Installation

To use within a Leiningen project, add the following to your project.clj file:

[clojure-solr "0.2.0-SNAPSHOT"]

To build from source, run:

lein deps
lein jar

Usage

(with-connection (connect "http://127.0.0.1:8983/solr")
  (add-document! {"id" "testdoc", "name" "A Test Document"})
  (add-documents! [{"id" "testdoc.2", "name" "Another test"}
                               {"id" "testdoc.3", "name" "a final test"}])
  (commit!)
  (search "test")
  (search "test" :rows 2))