Return-Path: Delivered-To: apmail-incubator-jena-dev-archive@minotaur.apache.org Received: (qmail 25815 invoked from network); 3 Mar 2011 11:34:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Mar 2011 11:34:27 -0000 Received: (qmail 84790 invoked by uid 500); 3 Mar 2011 11:34:24 -0000 Delivered-To: apmail-incubator-jena-dev-archive@incubator.apache.org Received: (qmail 84770 invoked by uid 500); 3 Mar 2011 11:34:24 -0000 Mailing-List: contact jena-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jena-dev@incubator.apache.org Delivered-To: mailing list jena-dev@incubator.apache.org Received: (qmail 84762 invoked by uid 99); 3 Mar 2011 11:34:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Mar 2011 11:34:24 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [83.222.232.117] (HELO echo.justhostme.co.uk) (83.222.232.117) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Mar 2011 11:34:19 +0000 Received: from 82-69-1-248.dsl.in-addr.zen.co.uk ([82.69.1.248] helo=[192.168.1.33]) by echo.justhostme.co.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1Pv6n7-0002EO-GL for jena-dev@incubator.apache.org; Thu, 03 Mar 2011 11:33:57 +0000 Message-ID: <4D6F7CA0.8050904@epimorphics.com> Date: Thu, 03 Mar 2011 11:33:52 +0000 From: Andy Seaborne User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8 MIME-Version: 1.0 To: jena-dev@incubator.apache.org Subject: LARQ indexes Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - echo.justhostme.co.uk X-AntiAbuse: Original Domain - incubator.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - epimorphics.com Pondering on what the LARQ assembler might look like ... 1/ Is the index associated with a graph or a dataset? or are both possible? (I think my pref is dataset) 2/ Here's a assembler for a dataset of a default graph and named graph. <#ds1> rdf:type ja:RDFDataset ; ja:defaultGraph <#model1> ; rdfs:label "Dataset 1" ; ja:namedGraph [ ja:graphName ; ja:graph <#model1> ] ; ja:namedGraph [ ja:graphName ; ja:graph <#model2> ] ; . <#model1> rdf:type ja:MemoryModel ; rdfs:label "Model(plain)" ; ja:content [ ja:externalContent ] ; ja:content [ ja:externalContent ] ; . LARQ adds: <#ds1> rdf:type ja:RDFDataset ; larq:textIndex "Location of Lucene data" ; ... to add it to a dataset. This *attaches* it, it does not *build* it. Andy