Search the web
Sign In
New User? Sign Up
taffydb · TaffyDB Support and User Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 127 - 157 of 201   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
127
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...
tacoman_cool
Offline Send Email
Mar 11, 2009
4:25 pm
128
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...
tacoman_cool
Offline Send Email
Mar 17, 2009
3:57 pm
129
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...
berg.matt
Offline Send Email
Mar 25, 2009
4:14 pm
131
... 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...
Jon Crosby
jcrosby001
Offline Send Email
Mar 26, 2009
2:39 pm
132
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...
tacoman_cool
Offline Send Email
Mar 28, 2009
7:40 pm
133
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...
tacoman_cool
Offline Send Email
Mar 28, 2009
7:40 pm
134
On Sat, Mar 28, 2009 at 12:40 PM, tacoman_cool <ian@...> ... grasp all the implications of your patches it is very fascinating. ... changes you...
Jon Crosby
jcrosby001
Offline Send Email
Mar 29, 2009
11:25 pm
135
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...
tacoman_cool
Offline Send Email
Mar 29, 2009
11:54 pm
136
... 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...
Jon Crosby
jcrosby001
Offline Send Email
Mar 31, 2009
2:12 pm
137
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...
berg.matt
Offline Send Email
Apr 13, 2009
8:22 pm
138
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...
tacoman_cool
Offline Send Email
Apr 13, 2009
8:52 pm
139
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...
paulvoors
Offline Send Email
Apr 17, 2009
7:38 pm
140
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...
tacoman_cool
Offline Send Email
Apr 17, 2009
7:47 pm
141
I also use collection.first quite a bit with collection.find, as I am usually searching for stuff by an ID....
berg.matt
Offline Send Email
Apr 19, 2009
3:02 pm
142
That helps, thank you for the answer. But I still have a problem handling the result. Here is some code: var favorList = linksStore.get(2); ...
paulvoors
Offline Send Email
Apr 20, 2009
3:25 pm
143
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...
tacoman_cool
Offline Send Email
Apr 20, 2009
3:30 pm
144
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...
tacoman_cool
Offline Send Email
Apr 25, 2009
1:22 pm
145
Ian, Awesome, I can't wait to try it out. Were you able to do any speed comparisons? Matt...
berg.matt
Offline Send Email
Apr 28, 2009
7:49 pm
146
Matt, Just in a broad sense comparing speeds of the loops. Performance in TaffyDB will vary, but it should be faster. Ian...
tacoman_cool
Offline Send Email
Apr 28, 2009
7:53 pm
147
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...
Paul Lynch
pauleglynch
Offline Send Email
May 7, 2009
8:07 pm
148
Hi Paul, Ahh, you can do something like this. If you structure your data like this: var friendsbystate =...
tacoman_cool
Offline Send Email
May 7, 2009
8:17 pm
149
Looks like the TaffyDB site is down. Is this yet another promising but abandoned project? Or did the site get hacked?...
Bruce
bfr348
Offline Send Email
May 26, 2009
2:07 pm
150
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...
massatse
Offline
May 26, 2009
2:08 pm
151
Should be back up. My server crashed :-(...
tacoman_cool
Offline Send Email
May 26, 2009
2:15 pm
152
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: ...
tacoman_cool
Offline Send Email
May 26, 2009
2:16 pm
153
Tried this, didn't work var init2 = function () { newFruit = TAFFY(fruits); fruit2 = gridPrinter2({ containerID: "displayGridDiv2" }, newFruit.find(...
Bruce
bfr348
Offline Send Email
Jun 9, 2009
11:47 pm
154
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...
Bruce
bfr348
Offline Send Email
Jun 9, 2009
11:47 pm
155
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...
tacoman_cool
Offline Send Email
Jun 10, 2009
1:34 pm
156
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 () { ...
Bruce
bfr348
Offline Send Email
Jun 11, 2009
3:16 pm
157
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 () { ...
Bruce
bfr348
Offline Send Email
Jun 11, 2009
3:16 pm
Messages 127 - 157 of 201   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help