Ian, Great job on the 1.5 release. Your support for Taffy DB has been excellent. My main wishlist feature is something I think you have talked about ...
Hey Darren, Wow! Awesome list of suggestions. Let me try an address some of them below. 1. I agree the filter API is getting a little complex and is missing ...
Hey Matt, Thanks for the excellent suggestions. Couple of quick comments: 1. As for a primary index, what would you think about some kind of UUID? A wish list...
With regards to #1, I think the main issue is quickly accessing the records by primary key. For example, I already include my own ID from the database in the...
Hey Matt, I see your point. In the index testing I've done I've found that you really need 2500 or more records before you start getting a performance...
I was also thinking that it might be nice to have a removeTemplate option as well. For example to remove the favorite food property for everyone living in...
Hey Everyone, So I have a semi-final version of 1.6 I'm testing and I wanted to get any comments on the following features as well as any overlooked ideas ...
Come and get it: http://taffydb.com/index.cfm?oa=download Let me know as you find bugs or other issues. Templates are a new and powerful way to minimize...
Congratulations on the release Ian. I haven't had a chance to take a look at it yet. It's been a busy couple of weeks. Looking forward to testing it out....
Very very nice job Darren. That has to be the most Flash like JavaScript interface I've seen to date. Very clean TaffyDB implementation as well. As for...
Thanks a lot. I really appreciate it. Given your previous comments about indexes and that you don't really see huge speed improvements until quite a large...
I saw this a few days ago as well. Didn't think about applying it to Taffy though. Nice thinking! What's really interesting to me is that (on my machine)...
Thanks Matt and Darren. Very cool information. By and large I've gotten the best result from this loop: var i = arr.length; while (i--) { } That should work...
True, according to the tests from that site, the reverse while loop is the best performer. Sounds like a good fit for 1.7. Speed is always good. Matt ... ...
The fast paced advancements in education and technology require us to keep up to date in the chosen field. We also need to improve our skill sets or study a...
Hi, I can't figure out how the template system work ... Here is my code : var record = new TAFFY([]); record.config.set("template",{title: "none",sub_title:...
I am new to Taffy and fairly new to javascript. I am working with a server which only allows javascript in the html.. no php or asp. I have pulled data into...
Hey Walt, You have it spot on. This is a very good use case for TaffyDB. One thing to be aware of is that you won't be update the hard copy (the file) using...
Thanks Ian, I'll go forward with it and let you know how it works out for me. The file doesn't need to be dynamic. Very rarely updated. Walt ... php. ... ...
Hi, I want to know if we can use the methods like find(), has() or like() to return boolean instead of Collection? Actually, I call find() and test the lenght...
I'm sorry, I missed your first post. Calling find and testing the length is really your best options for seeing if the collection contains any matches. You...
Hello I want to print a Taffy collection as a table, but I don´t want to write the code for every single table. There´s a way to write a javascript function...
Thanks for the question, Sorry for the slow response. It prompted some ideas in my head and I ended up putting together a whole tutorial on the topic. I want...