From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Alexandre Garreau Newsgroups: gmane.emacs.devel Subject: Re: sqlite3 Date: Mon, 13 Dec 2021 09:52:13 +0100 Message-ID: <3128233.LASfulB0cI@galex-713.eu> References: <87tufmjyai.fsf@gnus.org> <605AE63E-2356-4048-AAD1-D25B13ED0B1F@mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="33848"; mail-complaints-to="usenet@ciao.gmane.io" Cc: philipk@posteo.net, Qiantan Hong , larsi@gnus.org, emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Dec 13 09:54:39 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mwh6U-0008cn-Dw for ged-emacs-devel@m.gmane-mx.org; Mon, 13 Dec 2021 09:54:38 +0100 Original-Received: from localhost ([::1]:48592 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mwh6S-0003q5-GC for ged-emacs-devel@m.gmane-mx.org; Mon, 13 Dec 2021 03:54:36 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:59678) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mwh4L-0002Ie-4I for emacs-devel@gnu.org; Mon, 13 Dec 2021 03:52:25 -0500 Original-Received: from [2a00:5884:8305::1] (port=36478 helo=galex-713.eu) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mwh4J-0002EK-Fp; Mon, 13 Dec 2021 03:52:24 -0500 Original-Received: from gal by galex-713.eu with local (Exim 4.94.2) (envelope-from ) id 1mwh49-002Rmy-SV; Mon, 13 Dec 2021 09:52:13 +0100 In-Reply-To: X-Host-Lookup-Failed: Reverse DNS lookup failed for 2a00:5884:8305::1 (failed) Received-SPF: pass client-ip=2a00:5884:8305::1; envelope-from=galex-713@galex-713.eu; helo=galex-713.eu X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:281836 Archived-At: Le lundo, 13-a de decembro 2021, 4-a horo kaj 44:17 CET Richard Stallman a= =20 =C3=A9crit : > [[[ To any NSA and FBI agents reading my email: please consider ]]] > [[[ whether defending the US Constitution against all enemies, ]]] > [[[ foreign or domestic, requires you to follow Snowden's example. ]]] >=20 > > I=E2=80=99m thinking of rather not exposing multisession.el directly, > > but instead use it as a backend for store.el. >=20 > What is store.el? Could you show us its interface specs? > Is it written, or is it a proposal? still a proposal, of a common abstraction over persistent key-value=20 stores, that would have sqlite among backends, but also lisp-implemented=20 stores such as the =E2=80=9Cone-file-per-value in a directory=E2=80=9D pers= ist.el currently=20 use (most efficient on btree fs like btrfs or zfs), and a logging delta=20 store qiantan hong implemented initially on a scratch by reaction to=20 sqlite suggestion.