You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Implemented unique keys for data storage for each php files.
- Once the file is created, its not immediately cached until it is called the first time. This is limitation of opcache. The script time should be before the scrip execution time.
file_put_contents(base_path($this->storagePath . $this->directory . '/' . $key), '<?php $value = ' . $value . ';', LOCK_EX);
The above command $value is the variable that is used for lookup. If there are 2 more files in opcache, this value will be overwritten.
Possible solution:
######## Issue imported from Gitea ########
Details
Gitea Issue ID : 593
State : open
Created : 2024-06-20T18:46:35+10:00
Issue Description
file_put_contents(base_path($this->storagePath . $this->directory . '/' . $key), '<?php $value = ' . $value . ';', LOCK_EX);
The above command $value is the variable that is used for lookup. If there are 2 more files in opcache, this value will be overwritten.
Possible solution:
Timeline
Label : Added bug on 2024-06-20T18:46:35+10:00.
Label : Added P3 on 2024-06-20T18:46:35+10:00.
Milestone : Added 0.0.0-rc.5 on 2024-07-02T12:21:16+10:00.
The text was updated successfully, but these errors were encountered: