Re: FW: CouchDB shared hosting

2009-07-08 Thread Sergey Shepelev
another location it > would give a problem (only 1 "public" IP/server, unless we work with SSL > certificates) is allowed by RIPE for as far as I know. With IPv6 this is of > course not a problem. > > -Original Message- > From: Sergey Shepelev [mailto:temo...@gma

Re: FW: CouchDB shared hosting

2009-07-08 Thread Sergey Shepelev
On Wed, Jul 8, 2009 at 1:33 PM, Noah Slater wrote: > On Wed, Jul 08, 2009 at 01:26:07PM +0400, Sergey Shepelev wrote: >> > He clearly means programmatic access, instead of via a GUI interface. If >> > you >> > had spent any time administrating a shared access co

Re: FW: CouchDB shared hosting

2009-07-08 Thread Sergey Shepelev
On Wed, Jul 8, 2009 at 12:13 PM, Noah Slater wrote: > On Tue, Jul 07, 2009 at 10:04:58PM +0400, Sergey Shepelev wrote: >> > We want to know if the following is possible now or in the near future. >> > When >> > it is possible we probably want to add the CouchDB

Re: FW: CouchDB shared hosting

2009-07-07 Thread Sergey Shepelev
On Tue, Jul 7, 2009 at 9:44 PM, Stream Service || Mark Scholten wrote: > I am sorry for duplicate messages. > === > > Hello, > > We want to know if the following is possible now or in the near future. When > it is possible we probably want to add the CouchDB

Re: Re: Extract JSON objects with Python?

2009-06-26 Thread Sergey Shepelev
of asking for address, phone, > and so on, to build a new JSON object and present. > > It would be even better if someone knew how to do this in python, but > all ways are good ways :P > > > On Jun 26, 2009 10:07 "Sergey Shepelev" wrote: > >> If you wa

Re: Extract JSON objects with Python?

2009-06-26 Thread Sergey Shepelev
If you want to open Couch database as local file and read it's content and try to operate JSON objects inside, that is possible.But it would be very bad idea. Just because there is already written code (couchdb) which does that and provides you with HTTP API. On Fri, Jun 26, 2009 at 11:57 AM, wro

Re: Extract JSON objects with Python?

2009-06-26 Thread Sergey Shepelev
You can't get handle to internal Couchdb JSON structures. You can't do server-side browsing/manipulations on JSON objects in database w/o first getting them to client. That's the very fundamental couchdb concept. Everything happens on client. Couchdb queries return you copy of JSON objects because

Re: Can I get csv data format from couchDB?

2009-06-25 Thread Sergey Shepelev
I second cjson option. We're using cjson in production for like half year, passing around big objects and lists, it works fine and fast. 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 >

Re: CouchDB for logging & file storage

2009-06-22 Thread Sergey Shepelev
. On Mon, Jun 22, 2009 at 7:29 PM, Robert Newson wrote: > You can also pass stale=ok if you don't need the latest results from a > view. > > http://wiki.apache.org/couchdb/HTTP_view_API > > B. > > On Mon, Jun 22, 2009 at 3:46 PM, Sergey Shepelev wrote: > > Fro

Re: CouchDB for logging & file storage

2009-06-22 Thread Sergey Shepelev
>From my poor experience with couch, i think that your task (ever expanding set of data, no updates) is perfect for couch. But, you should also consider that expanding-only set of data is a good task for constant databases too. Though, you would run into a expansive process writing a nice querying

Re: Things I can't figure out (load documents from dicts, ...)

2009-06-21 Thread Sergey Shepelev
On Mon, Jun 22, 2009 at 1:42 AM, Thomas Harding wrote: > > Hello, > I'm a beginner in couchdb and couchdb-python. > > And I'm not so experienced in Python... > nor in English. > > I've played with couchdb for two week-ends,  and I'm able now to > do few things, starting from a script  I found on

Re: handling keys in the REST view API

2009-05-29 Thread Sergey Shepelev
t, the > stemming is just an example where i'd like to use it. > > > On May 29, 2009, at 12:20 , Sergey Shepelev wrote: > >> Just use Xapian. >> >> On Fri, May 29, 2009 at 1:47 PM, Peter Maas wrote: >>> >>> Hi, >>> >>> I'm

Re: handling keys in the REST view API

2009-05-29 Thread Sergey Shepelev
Just use Xapian. On Fri, May 29, 2009 at 1:47 PM, Peter Maas wrote: > Hi, > > I'm trying to write a very basic fulltext search facility and managed to get > something working: > > http://log4p.com/2009/05/28/simple-fulltext-analysis-in-couchdb/ > > Currently I sanitize the source text, remove sto