On Dec 28, 7:50 pm, Piotr 'Qertoip' Włodarek <qert...@gmail.com>
wrote:
> Following my recent adventure with words ranking, here's the parallel
> version:
>
> ...
> (defn parallel-top-words [in-filepath out-filepath]
>   (let [string  (slurp in-filepath)

'slurp' just reads the whole file in at once as a string, right?  You
could be bottlenecking on the file access and read.  Can you wrap this
step only with a timer and see how long it takes?

mfh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to