thak you for answering. I'm having trouble with javascript because I mostly program with php and that was a challenge for a 17 year old with problems paying...
Hey everyone, TaffyDB 1.7 is now out. You can download the latest version on TaffyDB.com Key features: * Bug Fix: Logical Sorting of numbers should now work...
So I wanted to throw this idea out to the group for comment. What if you combined TaffyDB and Amazon s3? What I envision is a service (call it taffyS3) that...
Hi Martin, Wow, excellent work. You got a lot of questions and I'll see if I can understand and address them. First off, about get vs find. Find returns the...
... Ok Ian, thanks for the info so far. I'm not sure if it makes sense to dig deeper in my application, the only taffy related part is in extendedSearch.js and...
Hey Everyone, Just a quick note to let you know I'm going to be giving a talk at JSConf2009 on TaffyDB. Was curious if any of you are going to be there. I was...
Hey Everyone, I've been hard at work on a new site that uses TaffyDB. The site is called mostrecent.net and lets you build news pages in sort of a Drudge...
Ian, I actually use TaffyDB pretty heavily on one of my sites. It is called Vitalist and can be found at http://www.vitalist.com. It is a productivity...
... Ian, I am using a slightly modified version of TaffyDB for CloudKit's jQuery plugin. I patched it so that callbacks were asynchronous, allowing the...
Hey Matt, Very nice work on Vitalist. I just signed up and am checking out the free version. You kind of hit the Taffy nail on the head, I originally started...
Very very cool work. Just walked through the file and although I don't grasp all the implications of your patches it is very fascinating. Can you tell me a...
Thanks for the details. Those both sound like great additions. One thing I've been thinking about is rewriting the event API to make it more flexible (and to...
... That would be very helpful. If one could attach more than one event and they could each be sync/async as needed, that would take care of a large number of...
Sometimes I am using TaffyDb with some larger amounts of data, so I am always concerned with speed, and I assume speed improvements when dealing with Taffy...
Hey Matt, That is an excellent suggestion. I've played around with a couple of ways of speeding up the loops before, but when the order is important you kind...
Is there a getByIndex method for Taffydb? Such a method would be very usefull in combination with the find method. The find method returns an array of the...
Actually, that is built right into .get() All of these should be valid: collection.get({field:"somevalue"}); collection.get(0); collection.get([0,1,2,3]); As a...
Another option is to use first(). I built the various methods to always return the same type of data to allow people to program predictably without having to...
At JSConf. The talk I gave on TaffyDB seemed to go pretty well, I'm hoping they'll have it up online within a few weeks. Anyway, I was inspired to implement...
Is there a way in taffydb to reference an attribute of an item in a second collection when doing a "find"? To extend the "friends" example a bit, suppose that...