what happens when many request is received to read & write to a file [PHP] ?
Do the requests gets queued ?
or only one is accepted and remaining are thrown away ?
Edit
i'm planning to use a Text based Hit counter [of my own]
|
|
You can encounter the problem of race condition To avoid this if you only need simple append data you can use
and dont' worry about your data integrity. If you need more complex operation you can use flock (used for simple reader/writer problem) For your PHP script counter I suggest you to do with something like this:
This way you don't have to implement a blocking mechanism and you can keep the system and your code script lighter AddendumTo avoid to have to count the
Basically to read the number of your counter you just need to read its filesize considering each impression add 1 byte to it |
|||||||||||||
|
|
No, requests will not be queued, reader will get damaged data, writers will overwrite each other, data will be damaged. You can try to use flock and |
|||
|
|
|
You can use flock() to get a lock on the file prior to read/write to it. If other threads are holding a lock on the file, |
|||||
|