Re: How to unsubscribe?

2017-04-11 Thread Geoff Bomford
hear you stopped using Couch. To unsubscribe just send an empty email to user-unsubscr...@couchdb.apache.org from your subscribed address. It is mentioned on http://couchdb.apache.org in section “Mailing lists" Regards, Eric On Apr 11, 2017, at 20:01, Geoff Bomford wrote: Can so

How to unsubscribe?

2017-04-11 Thread Geoff Bomford
Can someone please remind me how to unsubscribe from this list? I can't find a link? I have stopped using CouchDb.

_find - specifying subfields in array

2017-03-09 Thread Geoff Bomford
I have a document that looks something like below. I can use _find to filter on any of the top level fields, is it possible to specify fields, and filters on subfields, if they are in an array? If so, what is the syntax? For example, if I ONLY wanted to output “barcodes.barcode”, instead of al

Re: Current Release still 2.0.0

2017-02-19 Thread Geoff Bomford
is safe to do (we need all indexes and replications to have "seen" the delete) and another careful operation to actually remove all traces (we'll leverage the clustered purge work for that). Hope that helps, Robert Newson CouchDB PMC On 17 Feb 2017, at 23:50, Geoff Bomf

Current Release still 2.0.0

2017-02-17 Thread Geoff Bomford
Is the current release still 2.0.0? Any timeframe on an update? Any progress on _purge not implemented? { "error": "not_implemented", "reason": "this feature is not yet implemented" } TIA

Re: 2.0 _purge returning "not implemented"

2016-11-10 Thread Geoff Bomford
rt of option to remove the tombstones CouchDB is not a good fit for a use case where the data has a shelf life of a couple of days. Cheers, Adam On Nov 10, 2016, at 4:54 PM, Geoff Bomford wrote: I don't know? Is there an option to enable deletion of deleted documents, especial

Re: 2.0 _purge returning "not implemented"

2016-11-10 Thread Geoff Bomford
" On 11/09/2016 03:30 PM, Geoff Bomford wrote: Thanks Adam, OK, then maybe Couchdb isn't what I'm looking for because I really need to purge deleted documents. I'm not using replication, and my data has a life of a couple of days, maximum. So I have a lot of data coming in,

Re: 2.0 _purge returning "not implemented"

2016-11-09 Thread Geoff Bomford
I on a different port and execute the purge request there. That’s not for the faint of heart, though. Cheers, Adam On Nov 9, 2016, at 12:22 AM, Geoff Bomford wrote: I’m trying to purge some documents by POSTing to /db/_purge The response I am getting is... { "error": "not_imp

Re: 2.0 _changes request returning all changes

2016-11-09 Thread Geoff Bomford
string parameters? http://docs.couchdb.org/en/2.0.0/api/database/changes.html#post--db-_changes <http://docs.couchdb.org/en/2.0.0/api/database/changes.html#post--db-_changes> Cheers, Adam On Nov 9, 2016, at 12:19 AM, Geoff Bomford wrote: I’m using couchdb 2.0 and trying to get a l

2.0 _purge returning "not implemented"

2016-11-08 Thread Geoff Bomford
I’m trying to purge some documents by POSTing to /db/_purge The response I am getting is... { "error": "not_implemented", "reason": "this feature is not yet implemented" } Is purge meant to be working in 2.0??

2.0 _changes request returning all changes

2016-11-08 Thread Geoff Bomford
I’m using couchdb 2.0 and trying to get a list of revision ids for a batch of documents so I can purge them. When I submit a POST to /db/_changes... { "doc_ids": [ "NEW712064", "NTG2192" ] } ...the response returns all changes, for all document ids. Am I doi