Update
The update function will update the value of a key in the redis database.
Params
- Key(*) the name of the key.
- Value(*) the new value of the key.
- Function(OPTIONAL) is the function that will be executed when the query is finished.
Return
If you've specified a function it will return the result of the query in the function, if not it will return the result of the query.
Functions
exports["ice_mysql"]:RedisUpdate(key, newValue, function)
Use
Awaitable
local result = MySQL.Redis.RedisUpdate("name", "kDex")
Callback
- Callback will return the same as the awaitable function but in the callback function.
- If the callback is not provided it will return the same as the awaitable function.
- If you want to make the query to execute in the main thread you have to specify a simple function like this:
() => {}
to do anything depending on the language.
MySQL.Redis.RedisUpdate("name", "kDex", function(result)
print(result)
end)