> On Jan 11, 2020, at 2:58 PM, T J <tjhn...@gmail.com> wrote: > > I was interested in using sqlite over GPFS.
The standard advice on using SQLite over a network file system is “don’t do it.” Even if you find the rare file system that handles locks properly, you’ll likely have performance issues. A client/server database like Postgres or MySQL is a better fit for a distributed use case. If you’re sending everything over the network, it makes more sense to send just the queries & results, not the innards of the b-tree too. Is there a reason you can’t use one of those? —Jens _______________________________________________ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users