开发者

What are the MySql, FlatFile Database Differences?

开发者 https://www.devze.com 2022-12-17 09:44 出处:网络
I mean whats the difference between mysql and fl开发者_高级运维at file database is it really slower to have \"ff db\"?A flat file database has far less functionality than a relational database.To name

I mean whats the difference between mysql and fl开发者_高级运维at file database is it really slower to have "ff db"?


A flat file database has far less functionality than a relational database. To name a couple of things, you lose explicit typing and indexing on columns, since the information in the file consists only of the rows of the table (and since you asked about speed, remember that indexing is what allows us to make fast queries).


Basic differences:

A relational db removes redundancy in the data, flat file you are stuck with redundant data.

A relational db moves towards solving inconsistent update problems, flat file you need to do this yourself

A relational db has a lot of work done to increase speed, provide optimal searching and storage systems, type your data, etc. A flatfile system has none of this.

You may find more interest in the features of more advanced RDBMSes too, as MySQL is actually a pretty basic relational db. The extra features of PostgreSQL for example, with it's much improved concurrent access controls, etc.

0

精彩评论

暂无评论...
验证码 换一张
取 消