<rant> I was recently contemplating: Why isn't the internet faster? The wait time of many pages is the initial latency of getting the reqest to the webserver,...
440
taffydb-owner@yahoogr...
Aug 6, 2012 9:33 pm
I've found that using TaffyDB has changed the way I do backend programming. Now I mostly write backends that are focused on storing and securing data in a...
441
Jason Wright
jayraywright
Aug 6, 2012 10:54 pm
Ian, Great post! That's how I'm thinking about backend development, too! Some applications with large datasets still need to have relational databases, but my...
442
hleogr
Aug 10, 2012 3:57 pm
Hi, In a project I need to send back the dataset result from a TAFFY DB querie. The dataset must be "cleaned" from the additional columns which TAFFY is adding...
443
Jason Wright
jayraywright
Aug 13, 2012 6:00 pm
Ian, Github is complaining about a framing problem with your website. I just noticed it today. -Jason...
444
tacoman_cool
Aug 13, 2012 6:06 pm
Should be fixed now....
445
Jason Wright
jayraywright
Aug 17, 2012 4:38 pm
Ian, When using a .filter([key:value]).get() command, the resulting subset is an array of values. Instead of returning an array of values, is it possible to...
446
taffydb-owner@yahoogr...
Aug 17, 2012 5:40 pm
Jason, If I understand what you are asking then Taffy is already somewhat effective at sun queries. It works by reducing the number of records it looks at to...
447
Jason Wright
jayraywright
Aug 17, 2012 7:09 pm
TAFFY(db().get()) That's exactly what I was wanting. Basically, in my financial planning software, I have a lot of data that I need to access, but the order of...
448
Jason Wright
jayraywright
Aug 17, 2012 7:36 pm
Thinking about the situation a little more, if I didn't want to use a subdatabase, I could use a special code to describe the order of the operation, then...
449
Karl Coleman
karl1coleman
Aug 28, 2012 8:16 pm
Here's the query I'm doing, with the details removed. Pretty basic. The db has 1060 records, nothing crazy large IMO. records = db().join(teams,...
450
exuma_cam
Aug 30, 2012 12:48 am
I am new to TaffyDB, so I apologize if this is a noob question. I am coming from a WebSQL framework. The data I am accessing from the web service are JSON...
451
exuma_cam
Aug 30, 2012 1:54 am
I think I just answered my own question and the answer is "no" one database should suit me just fine. In playing with this it dawned on me that using standard...
452
michaelbluejay
Aug 31, 2012 1:52 am
I know that the documentation purportedly explains how to do queries, but I find it exceptionally difficult to understand, and the lack of practical examples...
453
Jason Wright
jayraywright
Aug 31, 2012 2:37 am
You could use something like: $queryResults=db().filter({col4:value}).order("col2"); Would give an array of rows which match the query "col4=value" and sorts...
454
michaelbluejay
Aug 31, 2012 5:23 am
... Thank you, though I can't figure out how to make your answer applicable to what I'm trying to do. Again, here's a query, which works fine: mydata =...
455
Karl
karl1coleman
Aug 31, 2012 4:12 pm
Do db(fieldValue).order("col2").select("col1", "col2", "col3") In reply to your response to Jason, the way to get an array back if you aren't using .select()...
456
Karl
karl1coleman
Aug 31, 2012 4:12 pm
Still trying to figure out my last problem. Throwing stuff against the wall to see what sticks at this point. What's the difference between ...
457
bitflipperjoel
Sep 12, 2012 11:26 pm
This code: var db = TAFFY([ {col1:'a39;,col2:'c'}, {col1:'a39;,col2:'b'}, {col1:'a39;,col2:'a'}, {col1:'139;,col2:'a'}, {col1:'139;,col2:'b'},...
458
hleogr
Sep 17, 2012 1:41 pm
Before filing this as an open issue I would like to check whether this is a bug or not. If I create a db variable with taffy() a run several queries with regex...
459
Rory Barrett
rorybarrett23
Sep 22, 2012 2:27 am
Hello Colleagues I have been playing around with Taffy and am impressed. How does Taffy read from a csv table with say 50 records ? Rory Barrett...
460
Marty
madcitymm
Sep 30, 2012 2:49 pm
In 1.7xx I did ranges by doing two sequential query's and I could do so in 2.6 but was hoping for a more elegant solution, especially as I'm building my...
461
niz75018
Oct 27, 2012 10:24 pm
hello, sorry for my english in my index.html page, i created a database but when i call data in another page i have "undefined" message. Is this normal? how...
462
David Kantowitz
dkantowitz
Oct 28, 2012 7:55 pm
Hello, I haven't used phonegap, but a common javascript browser trick is to assign your data to the variable "top.name". This variable keeps it's value across...
463
niz75018
Oct 29, 2012 9:12 pm
thank you but i want my db persist, even if y close browser/application. maybe i will use sqlite if i don't find a solution but i really like the simplicity of...
464
Ian Toltz
itoltz
Oct 29, 2012 11:17 pm
If storing the database is important for you, then this might not be the right solution. That said, the database is just a JavaScript object, and you could use...
465
Marty
madcitymm
Nov 29, 2012 8:50 pm
Mike, Can you post the exact <head..</head> links for your fix? I have not been able to get IE from giving the "JSON is Undefined" error, even using a doctype...
466
Marty
madcitymm
Dec 6, 2012 8:32 pm
Found solution: <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script...
467
Marty
madcitymm
Dec 7, 2012 5:32 pm
my application has a code line of: vmpgcity=vlist().order("mpgcity").distinct("mpgcity").map(function(mpgcity){return mpgcity;}); in "search4t.js" at line 186 ...
468
hleogr
Jan 2, 2013 9:05 pm
Is there a smart way to remove duplicates from a TAFFYDB? I would like to use a extension where a key is generated from specified colums representing a key and...