Dear Richard and SQLiters,

I would like to ask, why is it so important to indicate that SQLite, in 
reference to threads or client/server,  " does not work that way". I think this 
might help to find the words to describe it. Is it because some embedded 
systems do not support threads? Is it because some systems are inherently 
single-task and thus a separate server process can not run? It seems to me that 
server-free or daemon-free do not transmit this. Also adding "-free" or "less" 
indicates something that the object is not. More precisely would be to indicate 
what the object is. What is the word for that programming methodology that 
existed since the beginning when there were no threads and everything was 
single-task?

Roman
________________________________
From: sqlite-users <sqlite-users-boun...@mailinglists.sqlite.org> on behalf of 
Richard Hipp <d...@sqlite.org>
Sent: Tuesday, January 28, 2020 6:18 AM
To: SQLite mailing list <sqlite-users@mailinglists.sqlite.org>
Cc: Rowan Worth <row...@dug.com>
Subject: Re: [sqlite] New word to replace "serverless"

CAUTION: This email comes from an external source; the attachments and/or links 
may compromise our secure environment. Do not open or click on suspicious 
emails. Please click on the “Phish Alert” button on the top right of the 
Outlook dashboard to report any suspicious emails.

On 1/28/20, Howard Chu <h...@symas.com> wrote:
>
> Wait, really? AFAICS embedded means in-process, no IPC required to operate.
>

Things like MySQL-embedded and H2 run a "server" as a thread instead
of as a separate process.  Clients then use Inter-Thread Communication
rather than Inter-Process Communication to send their queries to, and
get their results from, the database thread.  So this is really the
same thing as a server using IPC except that the server runs in the
same address space as the client.  The point of using the term
"serverless" is to indicate that SQLite does not work that way.

--
D. Richard Hipp
d...@sqlite.org
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailinglists.sqlite.org%2Fcgi-bin%2Fmailman%2Flistinfo%2Fsqlite-users&amp;data=02%7C01%7Croman.fleysher%40einsteinmed.org%7C9d048c5952ba4b25c61f08d7a3e3dc39%7C9c01f0fd65e040c089a82dfd51e62025%7C0%7C0%7C637158071362442872&amp;sdata=mC%2F9%2Bc%2Bcn84%2Fvn66c8pTVksPDtzMGhRS5wOwU%2FrQe7w%3D&amp;reserved=0
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to