[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: [ANN] Persistor, Transparent Persistence for Lua data!
- From: Jorge <xxopxe@...>
- Date: Wed, 05 Jun 2013 16:31:42 -0300
From the README:
------------------------------------
local persistor = require 'persistor'
local p = persistor.new('path/to/the/object/folder')
-- store something
p.pi = 3.14
p.circle = {center={x=0, y=0}, radius=0.5}
-- read something (possibly much later)
print (2 * p.pi * p.circle.radius)
------------------------------------
https://github.com/xopxe/lua-persistor
Oh, you're going to be soooooo disappointed! :)
Jorge