dapr / php-sdk

Dapr SDK for PHP
Apache License 2.0
72 stars 15 forks source link

file_put_contents bug #75

Closed withinboredom closed 3 years ago

withinboredom commented 3 years ago

After learning the hard way, file_put_contents may not flush the file to disk (it's a very old bug). Caches are written using this function, which may cause intermittent race conditions. The file writing needs to use lower-level functions to write files and ensure it is flushed to disk.