Home > Backend Development > PHP Tutorial > 问问 单个服务器 做实时查询 ,如何优化?其中 一个 ip表写入比较频繁 php+mysql

问问 单个服务器 做实时查询 ,如何优化?其中 一个 ip表写入比较频繁 php+mysql

WBOY
Release: 2016-06-23 14:04:41
Original
873 people have browsed it

问问 单个服务器 做实时查询 ,如何优化?其中 一个 ip表写入比较频繁
php+mysql

公司让我们做一个管理系统,有关财务的,数据要实时的,只给一台服务器


回复讨论(解决方案)

主要查询出来的是什么数据呀,ip写入频繁是用来干嘛的呢

主要查询出来的是什么数据呀,ip写入频繁是用来干嘛的呢

ip 是写入的是 访问IP和次数和时间,通过查询这些数据算出 应付金额。

建议贴出表结构和期望结果,这样比较容易看懂。

表上加上索引

索引就不必说了,现在想到的就是分区

"ip表写入比较频繁"
写入频繁的表应该减少索引, 
这个表应该不需要修改(delete/replace/update), 可以考虑用archive引擎

"ip表写入比较频繁"
写入频繁的表应该减少索引, 
这个表应该不需要修改(delete/replace/update), 可以考虑用archive引擎

这个说的好,我需要这种声音。谢谢了!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template