对于非常简单的选择,MySQL 性能不佳

发布于 2024-12-13 20:35:13 字数 433 浏览 2 评论 0原文

我的 mysql 查询的性能有问题。我有一个非常大的表

create table query(
    id  Integer,
    session Integer,
    time    Integer,
    name    Integer,
    region  Integer);

数据量 - 2 GB。我在“名称”上创建了索引 - 7 GB。

我的查询如下所示:

select count(id) from query where name=somevalue;

我不会添加任何新数据,并且我使用标准“my-huge.cnf”。尽管如此,我每次查询都会花费大约 4-5 秒,我将执行大约 9-10*45000 次查询。如果我的计算机有 2GB 内存,我应该更改哪些选项来提高速度。

I've got a problem with perfomance of my mysql queries. I've got a very big table

create table query(
    id  Integer,
    session Integer,
    time    Integer,
    name    Integer,
    region  Integer);

Volume of data - 2 gb .I've made index on "name" - 7 gb.

My queries look like:

select count(id) from query where name=somevalue;

I wouldn't add any new data, and I used standard "my-huge.cnf". Still, I spend about 4-5 seconds per query, I'm going to do about 9-10*45000 queries. Which options should I change to increase speed, if my computer has 2gb memory.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好倦 2024-12-20 20:35:13

count(*) 的运行速度可能会稍快一些。

select count(*) as rowcount from query where name=somevalue;

您也可以考虑将计数缓存在单独的表中并从中查询。

A count(*) may run marginally faster.

select count(*) as rowcount from query where name=somevalue;

Also you may consider caching the counts in a separate table and querying from that.

仲春光 2024-12-20 20:35:13

如果您从不更改数据,那么您应该考虑对所有可能的名称运行一次查询 (SELECT DISTINCT(name) FROM query),然后存储 COUNT()< 的值/code> 在缓存中。为此,您可以创建一个表 cache,其中 nametotal 作为列,并用运行 SELECT 的结果填充它name, COUNT(*) AS 总计 FROM 查询 WHERE name = 'name' 每个名称。

然后,您只需从缓存中选择总计 WHERE name = 'name',这将非常快。

If you're never changing the data, then you should consider running the queries for all possible names (SELECT DISTINCT(name) FROM query) once, then storing the value of COUNT() in a cache. For that purpose, you could create a table cache with name and total as columns, and populate it with the results of running SELECT name, COUNT(*) AS total FROM query WHERE name = 'name' for each name.

You will then simply SELECT total FROM cache WHERE name = 'name', which will be very fast.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文