-
Notifications
You must be signed in to change notification settings - Fork 376
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
orm update has cache #626
Comments
I had the same problem and I lost like 2 hours so I disabled the cache globally. |
The cache isn't really a cache, but a singleton pattern. I too disabled it globally. |
I update via ORM calls. |
Can you provide a limited code sample? Like the one here. |
If i try to update the same object, it only updates 1 time. Let's say I want to update an UserRole I retrieve the user with .get and update it but if I want to update it againt the UserRole doesn't update the 2nd time. |
If you provide a code sample or even better, a failing test case, then I may be able to do something with it. |
cache and cluster... how can i purge the "cache" in cluster-express-configuration? my solution at the moment is to disable orm-cache |
Orm cache isn't a cache at all, but an identity map. I don't see anything wrong with disabling it. |
when i update model, i change data on mysql command line.
But i orm2,the data not change need i use
orm.singleton.clear();
that data will be change.
why?
The text was updated successfully, but these errors were encountered: