Releases: RedisGears/rgsync
Releases · RedisGears/rgsync
Version 1.2.0
Version 1.1.4
Version 1.1.3
Version 1.1.2
Version 1.1.1
Version 1.0.3
1.0.2
This is a maintenance release for version 1.0.
Update urgency: Medium
- New Connectors:
- Redis connector - Sync hashes to another Redis database (big thank to @socialratnesh for contributing this connector)
- MSSQL connector - Sync hashes to MS SQL database (big thank to @viragtripathi for contributing this connector)
1.0.1
1.0 GA
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.
Supported recipes currently are
- Write-Behind
- Write-Through
Please read the readme of the 1.0 branch 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.
0.2.0
Version 0.2.0 of rgsync
Features:
- Support SQLite target
Note:
This release compatible with RedisGears 1.0-RC1 and above.