Thanks Aaron, simple-check is actually on my (very long) list of things to
learn, but generating the data myself was pretty easy and a nice exercise.

/haim


On Mon, Feb 10, 2014 at 9:31 PM, Aaron France <aaron.l.fra...@gmail.com>wrote:

> Hi,
>
> Ignoring your question for a second to recommend using simple-check[0]
> to generate test data.
>
> [0] https://github.com/reiddraper/simple-check
>
> Aaron
>
> On Mon, Feb 10, 2014 at 08:46:59PM +0200, Haim Ashkenazi wrote:
> > Hi
> >
> > I have a simple code that generates a list of maps:
> >
> > (defn test-data
> >   [nsamples]
> >   (loop [acc []]
> >     (if (>= (count acc) nsamples)
> >       acc
> >       (recur (concat acc (session))))))
> >
> > The session function returns a list of one to five generated maps. The
> idea
> > is to get a list of (not much more then) nsamples generated maps. This
> code
> > runs fairly fast for my needs but out of curiosity I was wondering how
> > would I make it run concurrently?
> >
> > Thanks in advance
> > --
> > Haim
> >
> > --
> > 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
> > Note that posts from new members are moderated - please be patient with
> your first post.
> > 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
> > ---
> > 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 clojure+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Haim

-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
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
--- 
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 clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to