For those who have played with JaQu or implemented solutions with it... are 
there any known thread safety issues?

In the following example from the site:

Product p = new Product();
        List<Product> soldOutProducts =
            db.from(p).
            where(p.unitsInStock).is(0).
            orderBy(p.productId).select();

Can a single "p" instance be concurrently shared by multiple threads if its 
just a "template" object ?
I see that it holds counts(?) after executing queries.  Are those counts 
significant?

Can anyone comment on the TOKEN WeakHashmap in the Db class?  Are there any 
concerns there about thread safety or garbage collection with it?

Thanks,
-J

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to