-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FMWK-48 Spring Data Aerospike Cacheable sync option #755
Conversation
@@ -112,20 +112,48 @@ public Object getNativeCache() { | |||
* @return The value (bins) to which this cache maps the specified key. | |||
*/ | |||
@Override | |||
@SuppressWarnings({"unchecked", "NullableProblems"}) | |||
@SuppressWarnings({"NullableProblems"}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SuppressWarnings({"NullableProblems"}) | |
@SuppressWarnings("NullableProblems") |
} | ||
} | ||
return value; | ||
if (record.getValue(VALUE) != null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
record
or valueLoader
can be null here.
AerospikeReadData data = AerospikeReadData.forRead(dbKey, record); | ||
Class<T> type = getValueType(valueLoader); // determine the class of T | ||
return aerospikeConverter.read(type, data); | ||
} else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need for else.
Key dbKey = getKey(key); | ||
Record record = client.get(null, dbKey); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should go under the following if
.
} | ||
} catch (Exception e) { | ||
throw new Cache.ValueRetrievalException(key, valueLoader, e); | ||
} else if (record.getValue(VALUE) != null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} else if (record.getValue(VALUE) != null) { | |
} | |
if (record.getValue(VALUE) != null) { |
No description provided.