Re: lucene as a graph store

2008-01-16 Thread Cam Bazz
number of edges (degrees?) between any 2 > nodes? > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > - Original Message > From: Cam Bazz <[EMAIL PROTECTED]> > To: java-user@lucene.apache.org > Sent: Tuesday, January 15, 2008 11:34:20

Re: lucene as a graph store

2008-01-15 Thread Otis Gospodnetic
ubject: lucene as a graph store Hello; I like to use lucene as a graph store. The graph representation is a list of edges. Consider the code below: final int commitCount = 16 * 1024; final int numObj = 1024 * 1024; Analyzer analyzer = new KeywordAnalyzer(); FSDir

Re: lucene as a graph store

2008-01-15 Thread Otis Gospodnetic
- Original Message From: Cam Bazz <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Tuesday, January 15, 2008 11:34:20 AM Subject: Re: lucene as a graph store well lets say I have a list representation of a graph like src:1 dst:2 src:2 dst:3 src:1 dst 3 outgoingEdgesOf(1) ret

Re: lucene as a graph store

2008-01-15 Thread Cam Bazz
query. Best. On Jan 15, 2008 6:22 PM, Otis Gospodnetic <[EMAIL PROTECTED]> wrote: > Hi, > > > - Original Message > From: Cam Bazz <[EMAIL PROTECTED]> > To: java-user@lucene.apache.org > Sent: Tuesday, January 15, 2008 8:50:07 AM > Subject: Re: luc

Re: lucene as a graph store

2008-01-15 Thread Otis Gospodnetic
Hi, - Original Message From: Cam Bazz <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Tuesday, January 15, 2008 8:50:07 AM Subject: Re: lucene as a graph store Usually for implementing things like page rank, or doing centrality metric calculations or maybe dij

Re: lucene as a graph store

2008-01-15 Thread Cam Bazz
does bring some terms, etc. into > memory, and you may have a look at the FieldCache. > > -Grant > > On Jan 15, 2008, at 7:17 AM, Cam Bazz wrote: > > > Hello; > > > > I like to use lucene as a graph store. The graph representation is a > > list of > >

Re: lucene as a graph store

2008-01-15 Thread Grant Ingersoll
ing some terms, etc. into memory, and you may have a look at the FieldCache. -Grant On Jan 15, 2008, at 7:17 AM, Cam Bazz wrote: Hello; I like to use lucene as a graph store. The graph representation is a list of edges. Consider the code below: final int commitCount = 16 * 1024

Re: lucene as a graph store

2008-01-15 Thread Karl Wettin
15 jan 2008 kl. 13.17 skrev Cam Bazz: Typically, when number of objects in BTree based structure in an oodbms for example increase, the search and add times also increase. Will lucene have the same problem and how can I overcome it if it does. There is a benchmark package in the contri

lucene as a graph store

2008-01-15 Thread Cam Bazz
Hello; I like to use lucene as a graph store. The graph representation is a list of edges. Consider the code below: final int commitCount = 16 * 1024; final int numObj = 1024 * 1024; Analyzer analyzer = new KeywordAnalyzer(); FSDirectory directory