vbawol 47 Posted May 13, 2017 Epoch Server Framework by Epoch Mod Team Epoch Server Framework is a simple yet powerful custom Redis database extension along with an Arma SQF framework that can be used to add persistence to any gamemode. Open Source Windows and Linux compatible 64-bit support Schema concept is based on saving data as a standard Arma Array data type. So the actual schema is completely in the hands of the Arma engine and SQF coder and should never require external schema changes. Github sources: https://github.com/EpochModTeam/EpochServerReleases: https://github.com/EpochModTeam/EpochServer/releases Simple Example: // SET data to persist for 30 days ["HelloWorldTest", "test1", 2592000, ["Hello World"]] call EPOCH_fnc_server_hiveSETEX; // Dump return data to log file (["HelloWorldTest", "test1"] call EPOCH_fnc_server_hiveGETRANGE) params [["_status",0],["_data",[]]]; if (_status == 1 && !(_data isEqualTo [])) then { diag_log format["DEBUG: %1",_data]; }; Documentation: SQF helper functions: https://github.com/EpochModTeam/EpochServer/tree/master/sqf/epoch_server_core RAW extension calls: https://github.com/EpochModTeam/EpochServer/blob/master/README.md Example Usage (Epoch Gamemode): https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_server License: Arma Public License Share Alike (APL-SA). 5 Share this post Link to post Share on other sites