use of com.pratilipi.data.type.UserPreferenceRtdb in project pratilipi by Pratilipi.
the class RtdbAccessorWithMemcache method getUserPreference.
// PREFERENCE Table
@Override
public UserPreferenceRtdb getUserPreference(Long userId) throws UnexpectedServerException {
if (userId == null)
return null;
UserPreferenceRtdb userPref = memcache.get(_getUserPreferenceMemcacheId(userId));
if (userPref == null) {
userPref = rtdbAccessor.getUserPreference(userId);
memcache.put(_getUserPreferenceMemcacheId(userId), userPref, expirationDeltaMinutes);
}
return userPref;
}
Aggregations