This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-12
Channels
- # babashka (4)
- # beginners (49)
- # biff (17)
- # calva (12)
- # cider (5)
- # clojure-czech (1)
- # clojure-europe (3)
- # clojure-norway (3)
- # core-logic (1)
- # cursive (4)
- # data-science (2)
- # datalevin (7)
- # emacs (1)
- # events (6)
- # fulcro (11)
- # helix (7)
- # hyperfiddle (30)
- # lsp (4)
- # podcasts-discuss (1)
- # practicalli (4)
- # releases (1)
- # remote-jobs (7)
- # ring (6)
- # spacemacs (4)
- # tools-deps (5)
Hello, Is there a memory performance bottlneck to be aware of when using membero? For example I am trying to find a pattern by day of the month so around 30 variables but when trying to initialize I am getting a OOM error while it it seems to work fine with 4 / 5 variables:
(let [vars (repeatedly 30 lvar)]
(run 1 [q]
(== q vars)
(everyg #(membero % [1 2 3 4 5 6 7 8 9]) vars)))
Gives a OOM.