This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-10-25
Channels
- # announcements (1)
- # architecture (3)
- # beginners (31)
- # calva (61)
- # cider (1)
- # clojure (43)
- # clojure-dev (17)
- # clojure-europe (85)
- # clojure-uk (8)
- # clojurescript (31)
- # cryogen (2)
- # cursive (7)
- # data-science (12)
- # datalog (1)
- # datomic (4)
- # defnpodcast (1)
- # figwheel-main (11)
- # fulcro (32)
- # hoplon (1)
- # leiningen (1)
- # malli (47)
- # pedestal (1)
- # rdf (2)
- # re-frame (11)
- # reagent (4)
- # reitit (7)
- # shadow-cljs (22)
- # vrac (8)
- # xtdb (2)
I have an attribute with values that are supposed to be vectors of floats. those vectors can get biggish and I don't want crux to index each element inside should I want to query for it; I want to treat the whole vector as an opaque blob. I found that adding a level of nesting (i.e., storing it as [[1.0, 2.0, 3.0]] instead of [1.0, 2.0, 3.0] works. is this how I'm supposed to do it, or is there a more idiomatic way?