cloud - finishes search implementation

This commit is contained in:
Bryce
2023-05-18 21:05:48 -07:00
parent 0e6a5c6749
commit cf34b4af7e
13 changed files with 1901 additions and 158 deletions

View File

@@ -10,6 +10,12 @@
[config.core :refer [env]]
[datomic.api :as dc]))
(defn escape [s]
(str/escape s
(into {}
(for [c "\\+-&&||!(){}[]^\"~*?:/"]
[c (str "\\" c)]))))
(def solr-uri (:solr-uri env))
(defn fmt-amount [a]