This is the 1.0 GA version of *rgsync*, a library that contains several database synchronisation recipes for Redis that can will register functions in [RedisGears](redisgears.io).
Supported recipes currently are
- Write-Behind
- Write-Through
Please read [the readme of the 1.0 branch](https://github.com/RedisGears/rgsync/blob/1.0/README.md) for more information.
Enhancements (compared to last release):
* 23 - Connection arguments can be callbacks which will be called on every reconnect.
Example:
Read from RedisGears configuration using configGet (https://oss.redislabs.com/redisgears/master/runtime.html#configget) function
def User():
return configGet('MySqlUser')
def Password():
return configGet('MySqlPassword')
def DB():
return configGet('MySqlDB')
connection = MySqlConnection(User, Password, DB)
Note:
This release is compatible with RedisGears v1.0.0 and above.