This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-01
Channels
- # announcements (3)
- # babashka (17)
- # beginners (163)
- # bristol-clojurians (1)
- # calva (18)
- # chlorine-clover (17)
- # clj-kondo (13)
- # cljs-dev (50)
- # cljsjs (3)
- # cljsrn (13)
- # clojure (218)
- # clojure-dev (5)
- # clojure-europe (9)
- # clojure-italy (10)
- # clojure-nl (8)
- # clojure-uk (107)
- # clojurescript (25)
- # conjure (163)
- # cursive (63)
- # data-science (9)
- # datomic (38)
- # docker (1)
- # figwheel (34)
- # figwheel-main (3)
- # fulcro (15)
- # graalvm (1)
- # helix (12)
- # jobs (3)
- # juxt (5)
- # kaocha (3)
- # lein-figwheel (2)
- # leiningen (6)
- # luminus (2)
- # malli (1)
- # meander (12)
- # nrepl (4)
- # rdf (2)
- # re-frame (2)
- # reagent (7)
- # reitit (5)
- # remote-jobs (2)
- # rum (1)
- # shadow-cljs (65)
- # spacemacs (27)
- # tools-deps (18)
- # vim (19)
- # xtdb (2)
what could cause this to happen, @marshall @jaret? no ddb throttling at all, heartbeat totally stable, but all services started getting transaction timeouts, and as you can see on the graph, live index threshold stuck at full. first time we've ever seen this!
@robert-stuttaford would you be able to start a case and share logs, version, config settings? We’d be interested in looking at this in more detail.
absolutely
my colleague Geoff will mail soon!
Is it possible to restore a database from a file on disk into an in-memory database? I'd like to write some tests for my code but don't want to point them towards the database on my system since that isn't portable. I know how to restore a database from the command line, what I am looking for is some Clojure code which demonstrates how to take an on-disk backup and restore it into an in-memory Datomic database for use in my tests. Thanks!
Am pondering the use of :db/fulltext. It’d mean I have to copy data over to new attribute. Is fulltext query really much faster than [(.contains :attr/name ?q)]?
fulltext does not. it’s a lucene index with default tokenization and stop words, and you can use lucene queries
not sure a “contains” would work reliably because it’s designed for natural language queries and indexing
@U09R86PA4 Thanks for the reply. So in short, yeah.. it’ll be faster?
'[:find ?e
:in $ ?q
:where
[?e :user/email ?email]
[?e :user/name ?name]
[(.toLowerCase ^String ?name) ?name2]
[(str ?email " " ?name2) ?text]
[(re-find ?q ?text)]]
<mailto:[email protected]|[email protected]> -> full email
Might want to search for “http://cleancoders.com”
I’m just wondering if you need the full power of RE or if you just want to match different segments
if you want exact matches of different segments, you would be better off creating derived attrs with just those parts canonicalized for indexing purposes, then do exact matches against them
Heya… just been browsing http://clubhouse.io and noticed your pm tool uses terms stories and epics, as do I… old school agile XP