Liking cljdoc? Tell your friends :D

clucie.core


add!cljmultimethod

(add! store-or-writer maps keys)
(add! store maps keys analyzer)

Adds documents represented as maps to the search index.

Adds documents represented as maps to the search index.
sourceraw docstring

delete!cljmultimethod

(delete! store-or-writer search-key search-val)
(delete! store search-key search-val analyzer)

Deletes the document containing search-val on search-key.

Deletes the document containing search-val on search-key.
sourceraw docstring

(phrase-search store-or-reader
               query-form
               max-results
               &
               [analyzer page results-per-page])

Search the supplied index with a pharse query string.

Search the supplied index with a pharse query string.
sourceraw docstring

(qp-search store-or-reader
           query-form
           max-results
           &
           [analyzer page results-per-page])

Search the supplied index with a classic-queryparser query string. NB: This may throw org.apache.lucene.queryparser.classic.ParseException by invalid query string.

Search the supplied index with a classic-queryparser query string.
NB: This may throw org.apache.lucene.queryparser.classic.ParseException
by invalid query string.
sourceraw docstring

(search store-or-reader
        query-form
        max-results
        &
        [analyzer page results-per-page])

Search the supplied index with a query string.

Search the supplied index with a query string.
sourceraw docstring

update!cljmultimethod

(update! store-or-writer m keys search-key search-val)
(update! store m keys search-key search-val analyzer)

Updates a document containing search-val on search-key.

Updates a document containing search-val on search-key.
sourceraw docstring

(wildcard-search store-or-reader
                 query-form
                 max-results
                 &
                 [analyzer page results-per-page])

Search the supplied index with a wildcard query string.

Search the supplied index with a wildcard query string.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close