Search found 6 matches
- 19 Nov 2020, 20:17
- Forum: Laravel package
- Topic: Catalog pages: high memory consumption and slow load speed
- Replies: 10
- Views: 7664
Re: Catalog pages: high memory consumption and slow load speed
Yes, I will try to remove xdebug.
But the same problem in production, where xdebug not installed, pages load even slower.
Do you can check my config/shop.php ? It seems to me that caching does not work, because when I change the ip address in a redis to a non-existent one, the error does not ...
But the same problem in production, where xdebug not installed, pages load even slower.
Do you can check my config/shop.php ? It seems to me that caching does not work, because when I change the ip address in a redis to a non-existent one, the error does not ...
- 19 Nov 2020, 13:21
- Forum: Laravel package
- Topic: Catalog pages: high memory consumption and slow load speed
- Replies: 10
- Views: 7664
Re: Catalog pages: high memory consumption and slow load speed
And attached madmin_log of category page: opening and reloading some category page.
Most likely the cache is not working
Most likely the cache is not working
- 19 Nov 2020, 11:07
- Forum: Laravel package
- Topic: Catalog pages: high memory consumption and slow load speed
- Replies: 10
- Views: 7664
Re: Catalog pages: high memory consumption and slow load speed
Nothing happens.
Even after installing aimeos/ai-cache and predis, nothing has changed.
The file is attached.
Even after installing aimeos/ai-cache and predis, nothing has changed.
The file is attached.
- 19 Nov 2020, 09:38
- Forum: Laravel package
- Topic: Catalog pages: high memory consumption and slow load speed
- Replies: 10
- Views: 7664
Re: Catalog pages: high memory consumption and slow load speed
Im using Laravel 7
config/shop.php has:
'resource' => [
'cache' => [
'redis' => [
'scheme' => 'tcp',
'host' => '127.0.0.1',
'port' => 6379,
]
]
],
....
'madmin' => [
'cache' => [
'manager' => [
'name' => 'redis', // Disable caching for development
],
],
installed:
"aimeos/ai ...
config/shop.php has:
'resource' => [
'cache' => [
'redis' => [
'scheme' => 'tcp',
'host' => '127.0.0.1',
'port' => 6379,
]
]
],
....
'madmin' => [
'cache' => [
'manager' => [
'name' => 'redis', // Disable caching for development
],
],
installed:
"aimeos/ai ...
- 19 Nov 2020, 09:24
- Forum: Laravel package
- Topic: Catalog pages: high memory consumption and slow load speed
- Replies: 10
- Views: 7664
Re: Catalog pages: high memory consumption and slow load speed
Thank you for quick answer.
XDebug exists, but it disabled.
For example is product page:
route: /{d_name}/{d_pos?}/{d_prodid?}
memory: 11MB, time: 526ms. It is fast.
Ie problem with catalog pages
On the production server, the speed is also slow. What could be the reason?
Aimeos: 2020.07
PHP: 7.3
XDebug exists, but it disabled.
For example is product page:
route: /{d_name}/{d_pos?}/{d_prodid?}
memory: 11MB, time: 526ms. It is fast.
Ie problem with catalog pages
On the production server, the speed is also slow. What could be the reason?
Aimeos: 2020.07
PHP: 7.3
- 19 Nov 2020, 08:36
- Forum: Laravel package
- Topic: Catalog pages: high memory consumption and slow load speed
- Replies: 10
- Views: 7664
Catalog pages: high memory consumption and slow load speed
Hi.
The product category page, even if there are no products in it, loads very slowly and uses a lot of memory.
route: /{f_name}~{f_catid}
memory: 47MB
time: 2.5s
total products in the shop: 10500
How i can speed up the loading of category pages?
And how i can view mysql queries of aimeos package?
The product category page, even if there are no products in it, loads very slowly and uses a lot of memory.
route: /{f_name}~{f_catid}
memory: 47MB
time: 2.5s
total products in the shop: 10500
How i can speed up the loading of category pages?
And how i can view mysql queries of aimeos package?