-
i am adding 1000 small objects to the DB at once (maybe 30 datoms) and it's taking 72 seconds.
i'm using `transact!`
is this expected? is it possible that this is an area for easy optimization? …
-
Example use case:
```clojure
(require '[clojure.core.async :as async])
(require '[konserve.core :as k])
;; Let's assume the backing storage service is down and
;; unavailable.
;; (async/
-
With the latest alpha we get a bunch of reflection warnings in the datahike test suite. We should activate them in konserve and then remove them.
-
Support the following:
```clojure
(d/create-database "datahike:redis://redis-server:snort@localhost:6379/")
```
and should work as expected.
-
I am using `fs-store` on an NFS volume, and am getting (partial) stacktraces similar to
```
java.nio.file.NoSuchFileException: /nfs/.nfsbe549e9e950952130000002b
at sun.nio.fs.UnixException.translat…
-
When compiling CLJS with konserve version 0.6.0-alpha3, you'll get this error:
```
[:main] Compiling ...
[:main] Build failure:
The required namespace "incognito.fressian" is not available, it was…
-
with `-Dclojure.core.async.go-checking=true` i sometimes get this error.
```
:cause "Invalid blocking call in dispatch thread"
:via
[{:type java.lang.IllegalStateException
:message "Inval…
-
Hi,
I try to execute `(def conn (connect uri))` after calling `(create-database uri)` with `(def uri "datahike:file:///U:/path/to/my/database")` and get the exception below. It seems to create a da…
-
I have a React Native app that does quite a lot of serialization when I'm saving my state to localStorage, `pr-str` sometimes takes up to 100 ms which is not ideal. Thus I'm just wondering if the spec…
-
datahike depends on a very old version of core.async in its dependent tree, which could cause ClassNotFoundException when other libs on classpath depends on newer version of core.async.
I couldn't…