i need a simple help….. on my hosting they have recently added a limit for the queries/hours
and my problem is that i have a couple of magentos installation with over 10k products…
for the import i use Magmi and i saw that it has the stats when import… so what i want to know which of theese numbers are the actual query executed ( if there is)
Global Stats
Imported Elapsed Recs/min Attrs/min Last 0.5%
3204 items (100%) 29.4436 6530 398330 0.0721
DB Stats
Requests Elapsed Speed Avg Reqs Efficiency Last 0.5%
70414 17.0054 248441 reqs/min 21.98/item 57.76% 198 reqs
thank you in advance.
Fabio
One thing to keep in mind, implement all the caching you possibly can. HTML blocks caching, APC cache, full page caching (third party module required if you’re not on Enterprise) all cache data retrieved from the database. If you’re pulling it from cache, you don’t need to hit the database till the data needs to be refreshed. This makes the site more responsive and is a win all round.
At the command line in SSH, you can issue the command:
dbuser and dbpass being your mysql user and password. It will kick back a line:
This gives you your server uptime and average queries per second. This server should have processed approximately 8340 queries in the time the server was up (uptime x queries per sec)
Another way to see what’s going on is to use mysql itself
You could then set up a cron that logs the queries status entry every hour and the queries per hour are the current total queries minus the previous total queries.