Skip to content

Instantly share code, notes, and snippets.

@avnersorek
Last active October 8, 2015 21:07
Show Gist options
  • Save avnersorek/3c9b65cf31817efe5ad0 to your computer and use it in GitHub Desktop.
Save avnersorek/3c9b65cf31817efe5ad0 to your computer and use it in GitHub Desktop.
public User Get(string userId) {
User cachedUser = redisClient.GetUser(userId);
if (cachedUser !== null) return cachedUser;
else return mySqlClient.GetUser(userId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment