gpt4 book ai didi

php - 游戏资源存储

转载 作者:搜寻专家 更新时间:2023-10-30 23:17:52 25 4
gpt4 key购买 nike

我有下表 townResources,其中存储了每个城镇 ID 的每个资源值。我对大量用户的性能影响持保留态度。我正在考虑将资源的余额转移到 towns 表,并将资源的一般值(value)存储在 .php 文件中。

这里有 townresources 表:

CREATE TABLE IF NOT EXISTS `townresources` (
`townResourcesId` int(10) NOT NULL AUTO_INCREMENT,
`userId` int(10) NOT NULL,
`resourceId` int(10) NOT NULL,
`townId` int(10) NOT NULL,
`balance` decimal(8,2) NOT NULL,
`resourceRate` decimal(6,2) NOT NULL,
`lastUpdate` datetime NOT NULL,
PRIMARY KEY (`resourceId`,`townId`,`townResourcesId`,`userId`),
KEY `townResources_userId_users_userId` (`userId`),
KEY `townResources_townId_towns_townId` (`townId`),
KEY `townResourcesId` (`townResourcesId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Stores Town Resources' AUTO_INCREMENT=9 ;

在我的情况下最好的选择是什么?

最佳答案

您最好的选择是先进行测试。您想支持多少用户和城镇?三倍......创建测试数据并查看性能是否在范围内。

关于php - 游戏资源存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10707766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com