diff options
author | orwell96 <orwell@bleipb.de> | 2020-12-16 16:33:41 +0100 |
---|---|---|
committer | orwell96 <orwell@bleipb.de> | 2021-01-12 13:27:00 +0100 |
commit | 544f8babb5421ed181371c3fcb49478571fab9f4 (patch) | |
tree | 00739c28b06c1a8356ef876a59a610f81f59cabd /readme.md | |
download | advtrains-544f8babb5421ed181371c3fcb49478571fab9f4.tar.gz advtrains-544f8babb5421ed181371c3fcb49478571fab9f4.tar.bz2 advtrains-544f8babb5421ed181371c3fcb49478571fab9f4.zip |
Implement basic serialization and file opening
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..ac364b8 --- /dev/null +++ b/readme.md @@ -0,0 +1,7 @@ +# serialize_lib +A Minetest mod library for safely storing large amounts of data in on-disk files. +Created out of the need to have a robust data store for advtrains. + +The main purpose is to load and store large Lua table structures into files, without loading everything in memory and exhausting the function constant limit of LuaJIT. + +Also contains various utilities to handle files on disk in a safe manner, retain multiple versions of the same file a.s.o.
\ No newline at end of file |