RE: The database as a "dictionary"?

2015-11-26 Thread Denis Fourt
Thanks Alex, I shall study that example. Denis > From: a...@software-lab.de > To: picolisp@software-lab.de > Subject: Re: The database as a "dictionary"? > Date: Thu, 26 Nov 2015 07:03:31 +0100 > > Hi Denis, > >>

Re: The database as a "dictionary"?

2015-11-25 Thread Alexander Burger
Hi Denis, > Programming all manually? What I like about picolisp is that when > there is no code which does exactly what I want, I still can easily > develop a clean solution from scratch instead of writing some ugly > hacks. :-) I mean, I would not use the DB if I were to believe I would > have t

RE: The database as a "dictionary"?

2015-11-25 Thread Denis Fourt
he DB not to "fight" against it. Thanks, DenisĀ  > From: a...@software-lab.de > To: picolisp@software-lab.de > Subject: Re: The database as a "dictionary"? > Date: Wed, 25 Nov 2015 07:50:41 +0100 > > Hi Denis, >

Re: The database as a "dictionary"?

2015-11-24 Thread Alexander Burger
Hi Denis, > Is an +Index prefix class required to get a searchable B-Tree > associated to the relation Yes. B-Tree are only available in indexes. Entities can, however, also be searched by other means, i.e. following links from other objects. > or are these classes just provided for convenience

RE: The database as a "dictionary"?

2015-11-24 Thread Denis Fourt
ks, Denis > From: denis.p...@hotmail.com > To: picolisp@software-lab.de > Subject: RE: The database as a "dictionary"? > Date: Sun, 22 Nov 2015 16:56:14 -0500 > > Yes, everybody knows this data structure, but the name is rather confusing. > Thanks. > > Denis >

RE: The database as a "dictionary"?

2015-11-22 Thread Denis Fourt
Yes, everybody knows this data structure, but the name is rather confusing. Thanks. Denis > From: olopie...@gmail.com > To: picolisp@software-lab.de > Subject: Re: The database as a "dictionary"? > Date: Sun, 22 Nov 2015 05:28:35 +0

Re: The database as a "dictionary"?

2015-11-21 Thread Pierpaolo Bernardi
On Sat, Nov 21, 2015 at 10:37 PM, Denis Fourt wrote: > B-Tree means binary tree or balance tree? Nobody knows the meaning of the B. https://en.wikipedia.org/wiki/B-tree -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

RE: The database as a "dictionary"?

2015-11-21 Thread Denis Fourt
Thanks for the information. I shall look deeper into the documentation and the code, then I should try it. B-Tree means binary tree or balance tree? Denis > From: a...@software-lab.de > To: picolisp@software-lab.de > Subject: Re: The data

Re: The database as a "dictionary"?

2015-11-21 Thread Alexander Burger
Hi Denis, > I have been working on some robust algorithms for text summarization and > matching. A very approximate (and misleading, but this is not important now) > description is : > > a) turn documents into lists of sentences > b) turn sentences into lists of words > c) estimate words statis