mysql怎么保存一件游戏装备,一般游戏开发是否用mysql
阿神
阿神 2017-04-17 14:59:50
0
2
538

游戏开发的数据库建模是怎么样的?有没有相关的学习贴子

阿神
阿神

闭关修行中......

reply all(2)
Ty80

As far as I know, it is more suitable to use a NoSQL document database such as mongodb. Of course, writing a demo does not consider scalability.
After the schema of the relational database is fixed, it will be difficult to expand. For example, the attribute items of daggers and shields are different, and it will be awkward to store them in a relational way.
If it is an online game, consider the need for horizontal expansion as the number of users increases in the future. MySQL also has many limitations, so you must consider using a database designed for clusters.

刘奇

A record is stored for each piece of equipment, and each column lists the attribute configuration of the equipment. The database only does storage, and the representation or performance is left to the server and client to parse and apply.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!