[
https://issues.apache.org/jira/browse/CASSANDRA-4313?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13296160#comment-13296160
]
Hudson commented on CASSANDRA-4313:
-----------------------------------
Integrated in Cassandra #1502 (See
[https://builds.apache.org/job/Cassandra/1502/])
only load key cache when caching is ALL/KEYS_ONLY, fix by yukim, reviewed
by slebresne for CASSANDRA-4313 (Revision
383a608e7ff73befaaf34ad7cc0aab4cc26d1316)
Result = FAILURE
yukim :
Files :
* src/java/org/apache/cassandra/db/ColumnFamilyStore.java
> CFS always try to load key cache
> --------------------------------
>
> Key: CASSANDRA-4313
> URL: https://issues.apache.org/jira/browse/CASSANDRA-4313
> Project: Cassandra
> Issue Type: Bug
> Affects Versions: 1.2
> Reporter: Yuki Morishita
> Assignee: Yuki Morishita
> Priority: Trivial
> Fix For: 1.2
>
> Attachments: 4313.txt
>
>
> Inside constructor, below condition is always evaluated to true:
> {code}
> if (caching != Caching.NONE || caching != Caching.ROWS_ONLY)
> CacheService.instance.keyCache.loadSaved(this);
> {code}
> should be
> {code}
> if (caching == Caching.ALL || caching == Caching.KEYS_ONLY)
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira