Hej all, I am matching on a rather large datastructure using search and $. I would like to try to optimize this a bit. Is there a way to short circuit sub structures under for instance specific keys that I know are not relevant?
Not at the moment one thing you could try is
(keep (fn [x] (m/find x ,,,))
(tree-seq branch? children root))
Thanks. Will be messy do to the heterogeneity of the structure.