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 database as a

RE: questions about the gui

2015-11-21 Thread Denis Fourt
Yes, this helps, I did not understand that psh was a debugging tool. About (app), I still would like to know, if there was a way to run more than one application on the same computer and be sure that they would not by accident decide to use the same port. I understand that within one app there

Re: questions about the gui

2015-11-21 Thread Alexander Burger
Hi Denis, in addition to what Joh-Tob said, let me correct some issues about 'app'. > b) I understand that calling the (app) function allows multiple users to > access > an application at the same time, which makes web apps and collaborative > software > possible What (app) really does is

Re: questions about the gui

2015-11-21 Thread Joh-Tob Schäg
I assume you fear that a port gets binded to a socket twice. That can not happen, since unix/linux does not allow two processes to bind the same process. (app) calls the pil function (port). The port function itself is able to find a unused port an binds it. For more details read (doc 'port) If

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

The database as a "dictionary"?

2015-11-21 Thread Denis Fourt
Hello, 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 statistics d) turn