Re: Can I get csv data format from couchDB?

2009-06-28 Thread Guozhu.Wen
Thanks, that is helpful. 2009/6/25 Nathan Stott > Use show and list functions to return CSV data. > http://wiki.apache.org/couchdb/Formatting_with_Show_and_List > > 2009/6/25 Guozhu.Wen > > > The data returned from couchDB is usually a json string. Something the > json > > string is so big that

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Benoit Chesneau
2009/6/25 Kevin Ferguson : > python-cjson is many times faster than simplejson-- maybe 8x faster or so. > > http://www.vazor.com/cjson.html > > Kevin Even when using C extension of simplejson ?

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Sergey Shepelev
html > > Kevin > > From: Guozhu.Wen [guozhu...@gmail.com] > Sent: Thursday, June 25, 2009 7:21 AM > To: user@couchdb.apache.org > Subject: Can I get csv data format from couchDB? > > The data returned from couchDB is usually a json string. S

RE: Can I get csv data format from couchDB?

2009-06-25 Thread Kevin Ferguson
python-cjson is many times faster than simplejson-- maybe 8x faster or so. http://www.vazor.com/cjson.html Kevin From: Guozhu.Wen [guozhu...@gmail.com] Sent: Thursday, June 25, 2009 7:21 AM To: user@couchdb.apache.org Subject: Can I get csv data format

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Zachary Zolton
I've also been thinking that JSON diffs would be pretty handy for functions for dealing with conflicts. On Thu, Jun 25, 2009 at 11:49 AM, Noah Slater wrote: > On Thu, Jun 25, 2009 at 09:11:22AM -0700, Chris Anderson wrote: >> On Thu, Jun 25, 2009 at 8:44 AM, Noah Slater wrote: >> > On Thu, Jun 25,

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Noah Slater
On Thu, Jun 25, 2009 at 09:11:22AM -0700, Chris Anderson wrote: > On Thu, Jun 25, 2009 at 8:44 AM, Noah Slater wrote: > > On Thu, Jun 25, 2009 at 09:24:31AM -0500, Nathan Stott wrote: > >> Use show and list functions to return CSV data. > >> http://wiki.apache.org/couchdb/Formatting_with_Show_and_L

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Chris Anderson
On Thu, Jun 25, 2009 at 8:44 AM, Noah Slater wrote: > On Thu, Jun 25, 2009 at 09:24:31AM -0500, Nathan Stott wrote: >> Use show and list functions to return CSV data. >> http://wiki.apache.org/couchdb/Formatting_with_Show_and_List > > Sigh. This would be better done with JSON Transformations. > No

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Noah Slater
On Thu, Jun 25, 2009 at 09:24:31AM -0500, Nathan Stott wrote: > Use show and list functions to return CSV data. > http://wiki.apache.org/couchdb/Formatting_with_Show_and_List Sigh. This would be better done with JSON Transformations. -- Noah Slater, http://tumbolia.org/nslater

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Nathan Stott
Use show and list functions to return CSV data. http://wiki.apache.org/couchdb/Formatting_with_Show_and_List 2009/6/25 Guozhu.Wen > The data returned from couchDB is usually a json string. Something the json > string is so big that it is time consuming for parseing this string. I use > python's

Can I get csv data format from couchDB?

2009-06-25 Thread Guozhu.Wen
The data returned from couchDB is usually a json string. Something the json string is so big that it is time consuming for parseing this string. I use python's simplejson module in order to convert json to dict type, but it is many slow. So I was wondering how can I fetch the csv data from couchDB