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...
I haven't had much experience with Javascript arrays. I've read the taffy getting started guide but it's not clear how to get data out using "get". I have...
It depends a little what you want to do with the data. If you just wanted to display it (to prove you could do it) via an alert() you could do this: ...
I'd like to see more examples. For instance, in the existing grid example, I have tried to find a place to insert a statement like this but nothing I try...
Hey Bruce, So I think this is where you need to do. Mind you it has been a while since I wrote the grid example. The gridPrinter expected the element ID you...
Actually it was this that I tried. (Second set of {} ) But at any rate it illustrates why I'm asking for real working examples. var init2 = function () { ...
Tried this, including correcting unmatched brackets from your example; but it didn't work. I'd really like to see a working example. var init2 = function () { ...