Jump to content

Recommended Posts

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/EpochServer

Releases: 
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:


License: 
Arma Public License Share Alike (APL-SA).

  • Like 5

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×