Skip to content

1.0 GA

Compare
Choose a tag to compare
@MeirShpilraien MeirShpilraien released this 12 May 13:38
· 110 commits to master since this release

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.