This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-03-11
Channels
- # announcements (1)
- # aws (5)
- # beginners (35)
- # calva (18)
- # clerk (5)
- # clojure (20)
- # clojure-berlin (1)
- # clojure-dev (12)
- # clojure-europe (16)
- # clojure-nl (1)
- # clojure-norway (159)
- # clojure-uk (5)
- # clojurescript (8)
- # conjure (1)
- # cursive (18)
- # events (10)
- # fulcro (23)
- # hyperfiddle (5)
- # introduce-yourself (3)
- # juxt (2)
- # off-topic (1)
- # polylith (4)
- # portal (11)
- # releases (1)
- # shadow-cljs (4)
- # xtdb (9)
- # yamlscript (1)
Seems like there was a new snapshot release over the weekend, and now queries seem to hang 😕 I don't suppose there's a changelog yet anywhere?
Huh, looks like the query won't hang if I don't specify * as columns, but doing any kind binding spec, either in the from spec, or with where, will end up with zero results, even though it just found same thing with no spec and limit
there wasn't for this one - we've been doing regular snapshot releases (nearly continuous deployment) when there haven't been breaking changes
over the last few weeks we've mostly been working on performance and bug-fixes, so there hasn't been much if anything user-facing
that said, happy to write some notifications now that we're starting to get people using it for longer-term spikes (previously it's mostly just been people playing with XTQL, short-lived in-memory databases etc, and giving feedback)
Yeah, I started testing out v2 as a local disk based cache to see how things work out
(time
(do
[(xtdb/query @xtdb/node '(-> (from :data [id])
(limit 1)))
(xtdb/query @xtdb/node '(-> (from :data [id])
(where (= id "06420618721502"))))]))
results in
; (out) "Elapsed time: 52.128218 msecs"
[[{:id "06420618721502"}] []]
Which I would have sworn worked on Friday