hyperion
hyperion copied to clipboard
Clojure API for generic persistence.
- The details of the bug and fix are in the docstring of `hyperion.key/random-fodder-seq`
I found an issue where :contains is working as expected on the in-memory datastore, but is not functioning on mongo. It's a simple case of: ``` vushaper.repl=> (find-by-kind (str :project)...
Doing the following gives me unexpected results: ``` clojure (save {:kind "user" :name "Colin"}) (println "before:" (count (find-by-kind "user"))) (delete-by-kind "foobar") (println "after:" (count (find-by-kind "user"))) ;; output: ; before:...