|
|
|
|
|
by psoots
1962 days ago
|
|
I'm very skeptical of this. It doesn't seem like something that could scale. By accessing database files through PHP, you are begging for race conditions while serving multiple requests simultaneously. At best, you will hit write-errors while other requests are working with the file. SQLite has a good explanation of the problem here: https://sqlite.org/faq.html#q5 |
|