We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
EhcacheDiskCache exposes a way to iterator over keys which is basically a wrapper over underlying ehcache iterator. Link
If we try to call iterator.remove() on above iterator, it won't work as it isn't supported.
Search:Performance
Write a simple unit test on EhcacheDiskCacheTests, fetch iterator and call remove(). Try to assert that the key actually got removed.
Calling remove() on EhCacheKeyIterator should be able to remove the desired key.
For fix, we need to override remove() in above class.
Plugins Please list all plugins currently enabled.
Screenshots If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
@sohami @kiranprakash154
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
EhcacheDiskCache exposes a way to iterator over keys which is basically a wrapper over underlying ehcache iterator. Link
If we try to call iterator.remove() on above iterator, it won't work as it isn't supported.
Related component
Search:Performance
To Reproduce
Write a simple unit test on EhcacheDiskCacheTests, fetch iterator and call remove(). Try to assert that the key actually got removed.
Expected behavior
Calling remove() on EhCacheKeyIterator should be able to remove the desired key.
For fix, we need to override remove() in above class.
Additional Details
Plugins
Please list all plugins currently enabled.
Screenshots
If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: