Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6930DFB59 for ; Mon, 25 Mar 2013 09:20:20 +0000 (UTC) Received: (qmail 47505 invoked by uid 500); 25 Mar 2013 09:20:19 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 46578 invoked by uid 500); 25 Mar 2013 09:20:12 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 46525 invoked by uid 99); 25 Mar 2013 09:20:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Mar 2013 09:20:10 +0000 X-ASF-Spam-Status: No, hits=-5.0 required=5.0 tests=RCVD_IN_DNSWL_HI,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of Martyn.Pearce@gs.com designates 207.17.33.102 as permitted sender) Received: from [207.17.33.102] (HELO mxebdp03ex-public.idz.gs.com) (207.17.33.102) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Mar 2013 09:20:06 +0000 X-IronPort-AV: E=Sophos;i="4.84,904,1355115600"; d="scan'208";a="93633372" Received: from unknown (HELO mxpcd01-public.ny.fw.gs.com) ([148.86.97.78]) by mxebdp03ex.idz.gs.com with ESMTP; 25 Mar 2013 05:19:25 -0400 From: "Pearce, Martyn" X-sendergroup: RELAYLIST Received: from gshclgp08ex.firmwide.corp.gs.com ([10.238.64.66]) by cd01-mxp-vip-prod.ny.fw.gs.com with ESMTP; 25 Mar 2013 05:19:25 -0400 Received: from GSCMEUP05EX.firmwide.corp.gs.com ([10.238.64.20]) by gshclgp08ex.firmwide.corp.gs.com ([10.238.64.66]) with mapi; Mon, 25 Mar 2013 09:19:24 +0000 To: 'user' CC: 'CouchDB Developers' Date: Mon, 25 Mar 2013 09:19:24 +0000 Subject: RE: Google Summer of Code topics Thread-Topic: Google Summer of Code topics Thread-Index: Ac4nKS7szGWPrtZKTTSCSfpA/VkUpACEJ0vA Message-ID: <1650166E173D354E9382181CA2DA9B0C0BE792DF08@GSCMEUP05EX.firmwide.corp.gs.com> References: <7BF0E6DD-9A71-49AB-9640-8962F828D5FE@yahoo.com> In-Reply-To: Accept-Language: en-US, en-GB Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, en-GB x-retentionstamp: Firmwide Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org It would be a great published example/howto if you were willing to publish = your code for that. -----Original Message----- From: Mark Hahn [mailto:mark@hahnca.com]=20 Sent: Friday, March 22, 2013 6:14 PM To: user Cc: CouchDB Developers Subject: Re: Google Summer of Code topics > Implement partial reads and updates of documents, In case anyone didn't know, you can do partial updates right now with an update handler. I have been using one for some time that allows the app to modify any part of a doc with a single http request. It even allows one to modify an attribute nested inside objects. I've ended up using only this for all updates. On Fri, Mar 22, 2013 at 7:20 AM, Jeff Charette wrote: > My top 3 for couchapps: > > 1. more robust _rewrites module to do things like, possibly introduce > regex matching > > http://stackoverflow.com/questions/14839422/rewrite-without-file-extensio= n-in-couchdb > 2. doc level security > 3. with secure_rewrites true, _attachments handler moved to design doc > level /db/_design/doc/_attachments - like an update handler > - database level _users, so /db/_design/doc/_users - behaves just > like /_users > > Sorry if any of this is pathetically naive! > Jeff Charette | Principal > We Are Charette > web / identity / packaging > > m 415.298.2707 > w wearecharette.com > e jeffrey@wearecharette.com > > On Mar 22, 2013, at 7:13 AM, Dave Cottlehuber wrote: > > > Hi folks, > > > > GSOC[1][2] registration for ASF closes this weekend, and we'd like to > > get some proposals into it, viz http://community.apache.org/gsoc.html > > from last year. > > > > If you reply, please do so just to the dev@ list -- note I BCC'd > > users@ for some ideas. > > > > I've got a few suggestions to get the ball rolling, with numbers where > > taken from the future features list: > > https://gist.github.com/rnewson/2387973 > > > > 6. implement a Domain-Specific Language to run within the Erlang VM, > > to support native speed filtering, validation, and indexing in > > addition to the current in-built JS and erlang ones. Maybe something > > that includes http://jsonselect.org/ > > > > 8/9. Rewire CouchDB's HTTP layer to support websockets and spdy. I > > think this implies switching to cowboy, this could be too messy. > > > > 12. Extend CouchDB's query model (e.g. > > https://developers.google.com/chart/interactive/docs/querylanguage) to > > support a richer syntax. > > > > 13/14. Implement partial reads and updates of documents, > > > > Make the javascript view engine faster. Could include v8 bindings, > > different / parallel communication approaches between erlang and > > javascript worlds, avoiding reparsing JSON roundtrips, and make it > > faster than the current spidermonkey implementation. > > > > Implement external storage of attachments and appropriate HTTP API > > hooks incl replication to allow hosting attachments outside the .couch > > files, either on local storage, or in cloud blob storage (S3, azure > > etc). > > > > Implement a view development sandbox, where you can easily prototype > > with a sub-set of documents without long build times. > > > > Add an optional HTTP compression layer to CouchDB. It would be really > > cool if you could do the compression during doc update (or view > > creation or something) so that it can be served directly next time. > > See https://github.com/lgerbarg/couchdb/tree/gzip-support for a prior > > implementation or https://gist.github.com/archaelus/76455 for a > > file-based approach, and > > http://visualstart.blogspot.co.at/2012/02/mochiweb-erlang-and-gzip.html > > for some other ideas. > > > > Develop a plugin API & rework the authentication layer to allow > > plugging in ErLDAP, nodejs with EveryAuth or PassportJS or in fact > > anything you like. > > > > Extend geocouch and/or couchdb with some of Volker's ideas (cue > > Volker). Or stuff like quadtrees, geohashes or hilbert curves. > > > > Finally, if you are interested in being a mentor, please speak up! > > > > A+ > > Dave > > > > [1]: http://www.google-melange.com/gsoc/homepage/google/gsoc2013 > > [2]: > https://groups.google.com/forum/?fromgroups=3D#!topic/google-summer-of-co= de-discuss/yYM2ru4bTeo > >