Re: clojure.set index not handling large sets...

2010-04-16 Thread Luc Préfontaine
The problem is more that whole records for already existing keys disappeared along the road. Like if conj failed to do its job. I would be surprised that a smaller subset recreates the problem. I had other instances were the input data was small and the index was correct, all keys and all the reco

Re: clojure.set index not handling large sets...

2010-04-15 Thread Per Vognsen
That sounds weird. If you know what keys weren't making it into the index as expected, did you try reducing the problem to a smaller test case involving those exceptional keys? -Per On Fri, Apr 16, 2010 at 11:50 AM, Luc Préfontaine wrote: > Hi all, > > I tripped over something strange yesterday.

clojure.set index not handling large sets...

2010-04-15 Thread Luc Préfontaine
Hi all, I tripped over something strange yesterday. I work on a tool to create reports in the REPL from data in an SQL database. Instead of building SQL statements with complex where clauses, the user can defined which tables/fields he wants to fetch and then he can work on these locally. I imple