clojure-solr icon indicating copy to clipboard operation
clojure-solr copied to clipboard

updates for Solr 3.3.0

Open spolyak opened this issue 14 years ago • 0 comments

i tried using this against Solr 3.3.0 and it didn't work. Here are the changes i made:

project.clj: from [org.apache.solr/solr-solrj "1.4.0"] to [org.apache.solr/solr-solrj "3.1.0"]

clojure_solr.clj from (defn add-documents! [coll] (.add *connection* (to-array (map make-document coll)))) to (defn add-documents! [coll] (.add *connection* (seq (map make-document coll))))

spolyak avatar Aug 26 '11 20:08 spolyak