Return-Path: X-Original-To: apmail-jackrabbit-dev-archive@www.apache.org Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 586659C87 for ; Thu, 8 Dec 2011 18:34:07 +0000 (UTC) Received: (qmail 42334 invoked by uid 500); 8 Dec 2011 18:34:07 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 42294 invoked by uid 500); 8 Dec 2011 18:34:06 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 42287 invoked by uid 99); 8 Dec 2011 18:34:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2011 18:34:06 +0000 X-ASF-Spam-Status: No, hits=-1.6 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [64.18.1.208] (HELO exprod6og107.obsmtp.com) (64.18.1.208) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2011 18:33:58 +0000 Received: from outbound-smtp-1.corp.adobe.com ([192.150.11.134]) by exprod6ob107.postini.com ([64.18.5.12]) with SMTP ID DSNKTuEDAS0DmLiDR0IUwRstGp2a2r7yMd+s@postini.com; Thu, 08 Dec 2011 10:33:37 PST Received: from inner-relay-4.eur.adobe.com (inner-relay-4.adobe.com [193.104.215.14]) by outbound-smtp-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id pB8IVpEt001632 for ; Thu, 8 Dec 2011 10:31:52 -0800 (PST) Received: from nahub01.corp.adobe.com (nahub01.corp.adobe.com [10.8.189.97]) by inner-relay-4.eur.adobe.com (8.12.10/8.12.9) with ESMTP id pB8IXZ7o008793 for ; Thu, 8 Dec 2011 10:33:35 -0800 (PST) Received: from eurhub01.eur.adobe.com (10.128.4.30) by nahub01.corp.adobe.com (10.8.189.97) with Microsoft SMTP Server (TLS) id 8.3.192.1; Thu, 8 Dec 2011 10:33:34 -0800 Received: from susi.local (10.136.134.193) by eurhub01.eur.adobe.com (10.128.4.111) with Microsoft SMTP Server id 8.3.192.1; Thu, 8 Dec 2011 18:33:32 +0000 Message-ID: <4EE102FC.40405@apache.org> Date: Thu, 8 Dec 2011 18:33:32 +0000 From: =?UTF-8?B?TWljaGFlbCBEw7xyaWc=?= User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 To: "dev@jackrabbit.apache.org" Subject: [jr3 =?UTF-8?B?bWljcm9rZXJuZWxdwqBwcm90b3R5cGUgKFJlOiBzdm4gY29tbQ==?= =?UTF-8?B?aXQ6IHIxMjEyMDE4IFsxLzddIC0gaW4gL2phY2tyYWJiaXQvc2FuZGJveC9qYWM=?= =?UTF-8?B?a3JhYmJpdC1taWNyb2tlcm5lbDogLi8gc3JjLyBzcmMvbWFpbi8gc3JjL21haW4=?= =?UTF-8?B?L2phdmEvIHNyYy9tYWluL2phdmEvb3JnLyBzcmMvbWFpbi9qYXZhL29yZy9hcGE=?= =?UTF-8?B?Y2hlLyBzcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvamFja3JhYmJpdC8gc3JjL20=?= =?UTF-8?B?YWluL2phdmEvb3JnL2FwYWNoZS9qYWNrcmFiYml0L2NvbmZpZ3VyYXRpb24vIHM=?= =?UTF-8?B?cmMvbWFpbi9qLi4uKQ==?= References: <20111208181848.7A82B23888D2@eris.apache.org> In-Reply-To: <20111208181848.7A82B23888D2@eris.apache.org> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit Hi, I just committed a prototype implementation of a JCR repository based on the Microkernel into the sandbox [1]. In contrast to the SPI based prototype [2], this is direct implementation not relying on an existing stack. This is very much work in progress still and many (if not most) things are not implemented. What currently (should) work is standard read and session write operations. However, there is no support for name spaces nor for node types. Furthermore not all property types are supported yet. The intent of this implementation is to be able to experiment with different approaches. It should help us to decide whether we want to go with a SPI based implementation and refactor this stack to fit our needs or whether we want to do a rewrite and reuse existing code where possible. Michael [1] http://svn.apache.org/viewvc/jackrabbit/sandbox/jackrabbit-microkernel/ [2] http://svn.apache.org/viewvc/jackrabbit/sandbox/jackrabbit-mk/ On 8.12.11 18:18, mduerig@apache.org wrote: > Author: mduerig > Date: Thu Dec 8 18:18:42 2011 > New Revision: 1212018 > > URL:http://svn.apache.org/viewvc?rev=1212018&view=rev > Log: > add Microkernel based prototype of JCR implementation (WIP)