-
Notifications
You must be signed in to change notification settings - Fork 106
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
Cache stores only ONE value #20
Comments
Same problem here, good to see I'm not alone with this one. |
May I see your code, while preparing data before store? |
I use the cache system over some php files, each file creates a object of cache with a specific id In theory the system should use the same ".cache" file and work with the same cache over the different PHP files, whats the system does with one value in cache. The complete content in the cache file gets deleted... And the code before the storing, is nothing special, sometimes a simple MySQL Database Call, sometimes I try to store just a string, like the example above. |
Oh wow, I think I fixed my problem...it was a problem with the charset, one php file was not converted to UTF8, what I need. Damn, sometimes it can be so easy... |
When I call store(), only the first value is stored. It happens in a AWS instance, but not in my XAMPP.
I can clear the cache and write again a different data, but only the first one.
Any Idea?
The text was updated successfully, but these errors were encountered: