Re: SproutCore as CouchApp

2010-09-14 Thread Benoit Chesneau
On Wednesday, September 15, 2010, Russell Branca wrote: > Keep us posted on how this works for you. I would love to see a blog > post about the end result and what it took to make it happen. > > I'm very intrigued by the idea of having a full javascript application > stack. CouchDB, Node.js and jQ

Re: SproutCore as CouchApp

2010-09-14 Thread Russell Branca
Keep us posted on how this works for you. I would love to see a blog post about the end result and what it took to make it happen. I'm very intrigued by the idea of having a full javascript application stack. CouchDB, Node.js and jQuery take you a long way, but its still missing a solid javascript

Re: SproutCore as CouchApp

2010-09-14 Thread Benoit Chesneau
On Sunday, September 12, 2010, Ido Ran wrote: > I'll be glad to, but I'm not sure how to get the trace. > There was no output in the command line. > > Ido > try to run couchapp push with -v, there is also a debug setting now that could help.

Re: SproutCore as CouchApp

2010-09-14 Thread Benoit Chesneau
On Friday, September 10, 2010, Ido Ran wrote: > Hi, > I would like to know if it is possible (even just in theory at this point in > time) to deploy SproutCore application as CouchApp. > From what I've understand SproutCore are static content once they are build > and to deploy them on web-server

Re: "IN" SQL Clause in Couch View

2010-09-14 Thread Norman Barker
Hi, you could use the multiview for this; so have a single view that emits each of the keywords as a key and then the multiview will calculate on the server the intersection of two views (e.g. view one would be keyed on blue, view two would be keyed on dog), the multiview would only return the d

Re: CouchDB on iPhone

2010-09-14 Thread Louis Gerbarg
On Sep 14, 2010, at 5:02 AM, Nils Breunese wrote: > > Op 14 sep 2010, om 10:13 heeft Mirko Kiefer het volgende geschreven: > >> has anyone an idea on how difficult it would be to create a CouchDB >> installation which could be bundled with an iOS app? Is it maybe possible to >> reuse some of

Re: Couch not releasing deleted files

2010-09-14 Thread Adam Kocoloski
Were there any view indexes on that DB? My suspicion is that couch_view_group misses a step somewhere in its dance and keeps a reference to an old #db{} Adam On Sep 14, 2010, at 4:46 PM, [mRg] wrote: > It was just on a DB with a lot of writes (documents having lots of > revisions, rather that

Re: Couch not releasing deleted files

2010-09-14 Thread [mRg]
It was just on a DB with a lot of writes (documents having lots of revisions, rather that lots of new docs), the database grows as expected but after just doing a simple compact on the db the old files still seem to be on disk as reported previously. It seems its been around a while now as (as far

RE: "IN" SQL Clause in Couch View

2010-09-14 Thread Nils Breunese
You'll need to get the documents containing "Blue" and the documents containing "Cat" and let the client do the intersection. Or add couchdb-lucene to the mix, which offers full-text indexing: http://github.com/rnewson/couchdb-lucene Nils. Van: Ido Ran [i

"IN" SQL Clause in Couch View

2010-09-14 Thread Ido Ran
Hi, I am trying to create a view like the one exist in taskr application called tag-cloud/ I want to be able to retrieve all documents which contain all the keywords I specify. For example: { _id: "A", keywords: ["Dog", "Cat", "Blue"] } { _id: "B", keywords: ["Dog", "Tree", "Blue"] } Now,

Re: consistence? buffering?

2010-09-14 Thread Wolfgang Egger
Thank you for the hints!! I had delayed_commit set to true

Re: CouchDB on iPhone

2010-09-14 Thread Mirko Kiefer
I didn't mean that design documents in general are an issue, without them CouchDB wouldn't make much sense. Apple just doesn't allow to download executable code into your app - all updates need to happen through the app store. This probably means that design documents need to be included in your

Re: consistence? buffering?

2010-09-14 Thread Sebastian Cohnen
Hi Wolfgang, two ideas: 1) do you have delayed_commits = true;? In that case couchdb will not sync immediately to disk which could result in data-loss, 2) you also experience some sort of browser-caching issue (in which case couchdb is not to blame). Best Sebastian On 14.09.2010, at 17:02, Wo

Re: consistence? buffering?

2010-09-14 Thread Stephen Prater
are you using 1.0.0? there is an issue with delayed commits. On Sep 14, 2010, at 10:02 AM, Wolfgang Egger wrote: Servus, everywhere I read about couchdb i can read, that one benefit of couchdb would be, that the db is always in a consistant state. This seems not to be true for couchdb 1.0

Re: consistence? buffering?

2010-09-14 Thread Wolfgang Egger
Sorry, instead of > 4) I push the last source again, shut down the couchapp and restart it and new > version of my sources is running i have to write shutdown the couchDB and restart it .. Wolfgang

Re: reduce.py with newline in the end

2010-09-14 Thread Julian Moritz
Am Montag, den 13.09.2010, 11:09 -0700 schrieb J Chris Anderson: > On Sep 13, 2010, at 11:01 AM, Noah Slater wrote: > > > Hi all, > > On 13 Sep 2010, at 18:00, Julian Moritz wrote: > > > >> Hi, > >> > >> I've got a problem with a view: my editors (gedit, nano) add a newline > >> to the end of

consistence? buffering?

2010-09-14 Thread Wolfgang Egger
Servus, everywhere I read about couchdb i can read, that one benefit of couchdb would be, that the db is always in a consistant state. This seems not to be true for couchdb 1.0 under ubuntu 10.4 called by firefix 3.5 and a couchapp-driven-app (myCouchApp). The following behaviour I have seen mor

Re: CouchDB on iPhone

2010-09-14 Thread Noah Slater
On 14 Sep 2010, at 10:02, Nils Breunese wrote: > Too bad there is no dependency management in the App Store (so CouchDB would > automatically be installed when installing your first application using > CouchDB as its backend) and saying "Please start CouchDB!" on the startup > screen might not

Re: Couch not releasing deleted files

2010-09-14 Thread Robert Newson
This was mentioned at CouchCamp, several developers suspect there's a subtle bug in the code where file descriptors are not being closed under some conditions. Did the OP identify a particular sequence that led here? B. On Mon, Sep 13, 2010 at 6:25 PM, Juan Jose Comellas wrote: > I'm pretty cer

Re: CouchDB on iPhone

2010-09-14 Thread Simon Metson
Hi, There was a tweet from Damien that they were working on this: http://twitter.com/damienkatz/status/20417276648 Cheers Simon On 14 Sep 2010, at 04:02, Nils Breunese wrote: Op 14 sep 2010, om 10:13 heeft Mirko Kiefer het volgende geschreven: has anyone an idea on how difficult it w

Re: Erlang Development Environment

2010-09-14 Thread Robert Dionne
I find Distel[1], which extends emacs, to be a very good IDE for erlang. It connects to a running erlang VM and accesses the code module, to produce support for symbolic debugging, listing processes, etc.. There is a bug in who_calls, one of the more valuable features. You can work around it by

Re: CouchDB on iPhone

2010-09-14 Thread Nils Breunese
Op 14 sep 2010, om 10:13 heeft Mirko Kiefer het volgende geschreven: > has anyone an idea on how difficult it would be to create a CouchDB > installation which could be bundled with an iOS app? Is it maybe possible to > reuse some of the work done for CouchDB on Android? > As Apple made quite a

CouchDB on iPhone

2010-09-14 Thread Mirko Kiefer
Hi all, has anyone an idea on how difficult it would be to create a CouchDB installation which could be bundled with an iOS app? Is it maybe possible to reuse some of the work done for CouchDB on Android? As Apple made quite a few changes to the App Store License Agreement I don't think there ar