This was it.  The overhead was in creating the handle.  

When I moved the doseq inside the with-connection it solved the problem.

Thanks

On Jan 19, 2011, at 7:24 AM, Meikel Brandmeyer wrote:

> Hi,
> 
> On 18 Jan., 19:32, rygorr <ryg...@gmail.com> wrote:
> 
>> (doseq [x (range 2000)]
>>     (with-connection db
>>        (insert-values :test
>>                       [:value] [x])))
>> db is the com.mysql.jdbc.Driver connection string.
> 
> Move the with-connection outside the doseq.
> 
> (with-connection db
>  (doseq [x (range 2000)]
>    (insert-values :test [:value] [x])))
> 
> Sincerely
> Meikel
> 
> -- 
> 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 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

Reply via email to