Home > Backend Development > PHP Tutorial > How to implement statistics on the number of tasks this month and this week when the amount of data is large?

How to implement statistics on the number of tasks this month and this week when the amount of data is large?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-08-18 09:16:07
Original
1691 people have browsed it

Do I need to create two tables for this month and this week to record the number of tasks per month and week? Does anyone know, please help.

Reply content:

Do I need to create two tables for this month and this week to record the number of tasks per month and week? Does anyone know, please help.

Same question, if there are multiple tables, they need to be operated asynchronously, and the data of each table needs to be added and updated. Don’t know if it’s appropriate

How big the amount of data is? I think it can be considered in the secondary business table primary key ID.
If we maintain two more tables, when will they be updated? Maintenance of statistical tables will affect business processes.

1. Write the data of the last month to the Redis List
2. Write a script that runs automatically in the early morning, remove the first element in the list, and insert the day’s tasks to the end of the list
3. The above scenario Suitable for tasks in the last month and week

Portal

If it is a hard-written month instead of the last 30 days, when writing the table, index the year/month/week number

Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template