Getting binary data of in-memory database

Am using in-memory databases to handle specific tasks. I’d like to be able to push the database data into shared memory for caching purposes and to share between helper and GUI, but I don’t see how (without using the disk as intermediary, which would negate the point).

Any suggestions, ideally without having to serialize/deserialize the data.

Instead of in-memory database, better use a file based database and use a cache big enough, so the whole database fits in memory and share the path with helper.

1 Like

Thanks.

Since I realized what I want to do is probably not currently possible, I’ve been investigating alternative ways and I think I’ve got one that would have the most impact while being incredibly simple (which is always good).