Added get_data_expires function to both Perl and Lua to retrieve DataBucket expire time

This commit is contained in:
Matt Hogan
2018-10-19 19:37:25 -04:00
parent 9f039b47e9
commit 88debae660
4 changed files with 45 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ public:
static void SetData(std::string bucket_key, std::string bucket_value, std::string expires_time = "");
static bool DeleteData(std::string bucket_key);
static std::string GetData(std::string bucket_key);
static std::string GetDataExpires(std::string bucket_key);
private:
static uint64 DoesBucketExist(std::string bucket_key);
static uint32 ParseStringTimeToInt(std::string time_string);