Re: Off-topic: Digest for this mailing list

2011-05-25 Thread Jens Rantil
Hi again, Re-reading the initial "welcome to mailing list" e-mail you get, I know see there is a user-digest-subscr...@couchdb.apache.org I can mail to. Maybe it would be nice to get this information _before_ you've signed up for the regular mailing list... :-) I apologize for the inconvenience,

Off-topic: Digest for this mailing list

2011-05-25 Thread Jens Rantil
Hi, I know this is a bit off-topic, but does anyone know if it's possible to get a daily digest of this, and/or the dev, mailing list instead of the inidividual mails? That would be great. Thanks, Jens

Re: Count since

2011-05-25 Thread Dave Cottlehuber
On 26 May 2011 07:31, Chris Stockton wrote: > Hello, > > On Wed, May 25, 2011 at 10:17 AM, Simon Woodhead > wrote: >> Hi folks, >> >> I was wondering if someone could help me with a view. >> >> We're storing some Apache logs in CouchDB and I want to report on >> requests by IP address in the last

Re: Count since

2011-05-25 Thread Chris Stockton
Hello, On Wed, May 25, 2011 at 10:17 AM, Simon Woodhead wrote: > Hi folks, > > I was wondering if someone could help me with a view. > > We're storing some Apache logs in CouchDB and I want to report on > requests by IP address in the last n of time. The ultimate goal is to > key on IP address, r

Thoughts on server wide replication

2011-05-25 Thread Chris Stockton
I was thinking if there was a server wide replication we could support many more users. Currently we are at a few thousand and we are starting to feel just the expense of all of the TCP connections and replication tasks, the calls to status to monitor that they are running etc are getting very expe

Count since

2011-05-25 Thread Simon Woodhead
Hi folks, I was wondering if someone could help me with a view. We're storing some Apache logs in CouchDB and I want to report on requests by IP address in the last n of time. The ultimate goal is to key on IP address, returning a count of requests within the last day. I've got the count by IP w

Re: C/C++ client Library | Changes notification

2011-05-25 Thread Matias Hernandez Arellano
thanks for the example .. i will try this with libcurl (C++ wrapper) ... El 25-05-2011, a las 12:50, Aurélien Bénel escribió: > Hi Matias, > >> So my question is: ¿How can i implement changes notification with a C/C++ >> client? > > > Just read continuous changes in a different thread. > Eve

Re: C/C++ client Library | Changes notification

2011-05-25 Thread Aurélien Bénel
Hi Matias, > So my question is: ¿How can i implement changes notification with a C/C++ > client? Just read continuous changes in a different thread. Every time you get a line, notify your observers. As an example, here is a Java implementation in 35 lines of code: https://github.com/benel/Porp

C/C++ client Library | Changes notification

2011-05-25 Thread Matias Hernandez Arellano
(sorry for my english). First .. great job!! .. Second: I try to check for changes notifications, i try with node.js and socket.io and works very well, but now i need to do this in a C++ client, so i search and i found a library in code.google , couchdb++ and read about using libcurl . So my

Re: Does CouchDB support gzip encoding?

2011-05-25 Thread Torstein Krause Johansen
On 25/05/11 20:25, Andrew Stuart (SuperCoders) wrote: Are you running your curl test from local or remote machine? Is nginx on the same machine or local? Yes, I'm running nginx, couchdb and curl from the same host, so there's no DNS lookup or network latency in the mix. Cheers, -Torstein

Re: [OT] Erlang/OTP R14B03 has been released

2011-05-25 Thread Gabor Ratky
This release fixes OTP-9181 which can affect CouchDB on pure 64 bit systems (Homebrew builds 64bit Erlang R14B02 as a dependency of CouchDB 1.0.2 by default on Mac OS X). OTP-9181 Ets table type ordered_set could order large integer keys wrongly on pure 64bit platforms. This is now corrected.

Re: [OT] Erlang/OTP R14B03 has been released

2011-05-25 Thread Paul Davis
CouchDB doesn't use Erlang SSH, but thanks for the note. On Wed, May 25, 2011 at 11:17 AM, Marcos Ortiz wrote: > > Imp > > > > > > > > > > Important notes from Erlang-announce list > > A security vulnerability in the SSH application has recently been > discovered and fixed (thanks to Geoff Cant!)

[OT] Erlang/OTP R14B03 has been released

2011-05-25 Thread Marcos Ortiz
Imp Important notes from Erlang-announce list A security vulnerability in the SSH application has recently been discovered and fixed (thanks to Geoff Cant!). This fix is included in R14B03, which is why you should consider upgrading if you use SS

Re: Does CouchDB support gzip encoding?

2011-05-25 Thread Andrew Stuart (SuperCoders)
Are you running your curl test from local or remote machine? Is nginx on the same machine or local? as On 25/05/2011, at 6:53 PM, Torstein Krause Johansen wrote: Hi again, On 25 May 2011 16:10, Torstein Krause Johansen wrote: On 25 May 2011 15:05, Andrew Stuart (SuperCoders) wrote: I put

Re: Does CouchDB support gzip encoding?

2011-05-25 Thread Paul Hirst
On Wed, 2011-05-25 at 09:53 +0100, Torstein Krause Johansen wrote: > The GET still took ~5.5 seconds, though, even though the amount of > data is 1.1M instead of 14M. > I query some pretty large views from our couch server, up to ~50M. These queries are over the local network and they are quite s

Re: Does CouchDB support gzip encoding?

2011-05-25 Thread Torstein Krause Johansen
Hi again, On 25 May 2011 16:10, Torstein Krause Johansen wrote: > On 25 May 2011 15:05, Andrew Stuart (SuperCoders) > wrote: >> I put nginx in front of the server as a reverse proxy and configure it to do >> the GZIP compression. > But after restarting nginx, it seems like I'm still getting tex

Re: Does CouchDB support gzip encoding?

2011-05-25 Thread Torstein Krause Johansen
On 25 May 2011 15:05, Andrew Stuart (SuperCoders) wrote: > I put nginx in front of the server as a reverse proxy and configure it to do > the GZIP compression. Cheers for that. I've got this in /etc/nginx/sites.enabled/default location /memento { proxy_pass http://localhost:5984/memento

Re: Does CouchDB support gzip encoding?

2011-05-25 Thread Andrew Stuart (SuperCoders)
I put nginx in front of the server as a reverse proxy and configure it to do the GZIP compression. as On 25/05/2011, at 5:01 PM, Torstein Krause Johansen wrote: Hi all, first of all, thanks for a great product. I've been enjoying my first weeks with CouchDB, its simplicity and RESTfulness

Does CouchDB support gzip encoding?

2011-05-25 Thread Torstein Krause Johansen
Hi all, first of all, thanks for a great product. I've been enjoying my first weeks with CouchDB, its simplicity and RESTfulness as well as couchapp allowing me to spread out the map, reduce & lists into separate JS files. Wonderful. Now, after searching the high and low on the web, I'm still left