Jump to content

Recommended Posts

My site is primary run on MySQL, however, due to its extensive lag, I was planning on using flat files for certain things (I would not store secure information, of course).

 

Anyway, disregarding that, the only thing I want to know is: are flat files quicker than MySQL databases?

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/130948-mysql-versus-flat-files/
Share on other sites

Mysql uses compiled code to performs database operations on the files that it uses to hold your data. Using some slow parsed/tokenized/interpreted php code to perform operations on the contents of a file yourself will be at least 20 times slower.

I disagree, Flat files can be fast and efficient means of storing info.

 

Caches are usually based on flat file designs, as well as the popular subset of SQL known as SQLite. And hands down it beats MySQL.

 

So YES, ya can move some of the data into a flat file schema and improve performance. But as with any DB, Design for optimized usage.

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.