05.02.2013, 22:30
What are the pros and cons of converting to MYSQL and is it worth it? I am currently creating a roleplay script.
1. Easier (in my opinion)
2. Can connect with others servers and your website (PHP) 3. Faster (having 50,00 entries in a table is much better than having 50,000 separate user files) |
Originally Posted by lolumadd_
2. Sqlite and files can only communicate with each other if they are on the same server. (aka: will not work with Gameservers)
|
Originally Posted by lolumadd_
3. You want to debate searching through a folder with 50,000 files compared to running a query on a MySQL database?
|
Originally Posted by VincentDunn
Judging by the content of your posts, you just seem to be vaguely slandering MySQL for no reason.
|
If you're going to doubt MySQL, at least provide some valid arguments.
|
Originally Posted by ******
I've seen MANY MANY people decide to use databases (and yes, by that I mean "SQL-based relational databases, namely SQLite and (mostly) MySQL") over files because they are "faster". I have put "faster" in quotes because most people don't actually have a clue what they are doing when it comes to SQL (Structured Query Language), and so they write their entire code base using only the most basic of queries that frankly don't gain them much over flat files (IMHO, no tests).
|
Originally Posted by ******
MySQL is designed for enterprise-class applications handling terrabytes of data spread over hundreds of servers (which is why I've always advocated SQLite - it has "lite" in the name for a reason, but that's another issue).
|
Originally Posted by ******
The problem is that people don't know the language they are using. They bolt a few words they found on w3schools together and think they're done
|