Re: Ubuntu 11.10 issues

2011-11-13 Thread Stephan Bardubitzki
You are right, build-couchdb will build v 1.1.1, I started couchdb with /couchdb/ which tried to start the uninstalled old version 1.0.1 and crashed. /./build/bin/couchdb/ starts version 1.1.1 and I can run the test suite without errors. Thanks for all your help. Stephan On 11-11-13 07:14

Re: Ubuntu 11.10 issues

2011-11-13 Thread Jason Smith
On Mon, Nov 14, 2011 at 1:10 AM, Stephan Bardubitzki wrote: > My Erlang version is > > /erlang 1:14.b.2-dfsg-3ubuntu2/ > > I guess this is the version your meant. > > I have tried to install a newer version of CouchDB using > > https://github.com/iriscouch/build-couchdb > > but this instalsl also

Re: Ubuntu 11.10 issues

2011-11-13 Thread Stephan Bardubitzki
My Erlang version is /erlang 1:14.b.2-dfsg-3ubuntu2/ I guess this is the version your meant. I have tried to install a newer version of CouchDB using https://github.com/iriscouch/build-couchdb but this instalsl also CouchDB 1.0.1. How can I tell build-couchDB which version to install? On 1

Re: Document design: Logging accesses to an item by a user

2011-11-13 Thread Robert Newson
Update handlers just move logic to the server side, they are not atomic or transactional, only the document update itself is. In other words, you *can* get a 409 conflict using an update handler. B. On 13 November 2011 09:24, Marian Steinbach wrote: > Sounds like the relation-document way (havin

Re: Document design: Logging accesses to an item by a user

2011-11-13 Thread Marian Steinbach
Sounds like the relation-document way (having a songaccess doc, equivalent to having had a songaccess table) would be the easiest one. I'll have to look into update handlers though. Thanks guys!