If you're working with large text files, tsv especially, you may encounter Java's memory overhead for Strings as well. I remember parsing a 1GB TSV file into EDN, and watching it consume 10GB of RAM.
I'd recommend taking a look at the Iota library to see if it would be of any help to you, https://github.com/thebusby/iota On Fri, Sep 13, 2013 at 11:47 AM, Cedric Greevey <[email protected]> wrote: > On Thu, Sep 12, 2013 at 3:33 PM, Andy Fingerhut > <[email protected]>wrote: > >> I have just added some discussion of this on ClojureDocs.org for the >> function clojure.core/subs, and references to that discussion for several >> other Clojure functions that I am pretty sure are affected, e.g. re-find, >> re-seq, re-matches, clojure.string/split, replace, replace-first >> > > We know with certainty that clojure.string/split is affected. Also, the > OP's question about how to use tooling to track down similar leaks in the > future does not appear to have been satisfactorily answered as of yet. > > -- > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
