Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My question is, does the map/zipmap step (below) run the risk of consuming too much memory, if the .csv file were large enough?

I have a sequence-of-sequences returned from clojure-csv. The following steps are deliberately separated for clarity. In other words, I'd be combining some of these in production code.

; Process the .csv file
(defn fetch-csv-data
    "This function accepts a csv file name, and returns parsed csv data,
     or returns nil if file is not present."

    [csv-file]
        (let [csv-data (ret-csv-data csv-file)]
            csv-data))

(def bene-csv-inp  (fetch-csv-data "benetrak_roster.csv"))

; Pull out the columns/keys, and
(def bene-csv-cols (map #(cstr/trim %1) (first bene-csv-inp)))

; create the keys.
(def bene-csv-keys (map #(keyword %1) bene-csv-cols))

; Make a sequence of just one of the keys:

(def test-ssns2 (map (fn [x] (:GIC-ID x)) 
                (map #(zipmap gic-csv-keys %1) gic-csv-data)))

Thanks.

share|improve this question
re: "I'd be combining some of these in production code." the hotspot compiler is great at inlining, no need to make you code less pretty just to please the JVM – Arthur Ulfeldt Aug 9 '12 at 18:59

1 Answer

up vote 4 down vote accepted

the only way this code will leak memory is because the defs will hold the heads of the lazy sequences. if you replace them with functions which return the sequence then the actual head will only exist in the call stack and be handled properly by lazy evaluation.

(defn bene-csv-inp [] (fetch-csv-data "benetrak_roster.csv"))

; Pull out the columns/keys, and
(defn bene-csv-cols [] (map #(cstr/trim %1) (first (bene-csv-inp))))

; create the keys.
(defn bene-csv-keys [] (map #(keyword %1) (bene-csv-cols)))

It's a rough rule of thumb, though sometimes useful, to replace defs with defn's when they contain infinite sequences, and make them called everywhere instead of read (unless you really want the caching benefits of a lazy sequence for multiple readers, and the sequence is only going have a reasonable amount of data read).

using function calls instead of reading the defs here will almost certainly not have any effect on runtime once the hotspot compiler finishes with it.

share|improve this answer
+1 if you only need the map and not the raw CSV data, then don't hold on to the lazy seq that you pass to zipmap and everything should be fine. – Alex Aug 9 '12 at 19:09
@Arthur-Ulfeldt Thanks. I will replace the defs; they were just there for demonstration purposes. – octopusgrabbus Aug 9 '12 at 19:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.