Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to delete keys from Distributed Cache with CohQL?

snidely_whiplashOct 25 2018 — edited Oct 25 2018

Hello,

What's the trick to deleting keys from a cache with CohQL?

CohQL> select count(symbol) from executions

Results

3608

CohQL> select count(symbol) from executions where key().symbol="SPY"

Results

2139

CohQL> delete from executions where key().symbol="SPY"

Results

CohQL> select count(symbol) from executions

Results

3608

This post has been answered by snidely_whiplash on Oct 25 2018
Jump to Answer

Comments

Post Details

Added on Oct 25 2018
1 comment
187 views