Slow product search in version 4.5.3

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
1 year ago
Just upgraded to NopCommerce 4.5.3 and have a DB with 5000+ products. The product search from the search bar takes 6-7 seconds on average. All other functions have a reasonable response time.

Here is what miniprofiler reported:
Controller Action: Nop.Web.Controllers.CatalogController.Search — 5945.80 ms

Just to clarify, only search by SKU is very slow.

On old NopCommerce 4.2 version, the same DB gives no longer than 1 second search response time.
Does anyone have the same experience? Is there a way we can improve this?
1 year ago
Is it a shared server ?
How much memory do you have ?
1 year ago
NopCommerce runs on a VPS 2G memory. DB is on a different VPS
1 year ago
Hey Talen,

I've one more suggestion for you, You can try our Search Plugin which will help you to enhance your In-Site Search, Which Helps in:

- Improve In-Site Search such as Amazon & google
- Support Auto Suggestion
- Relevance search
- Multi Facet filter search
- Misspell search &
For more - https://www.nopaccelerate.com/features-comparison/

Please place the order for free Trial from the below:
http://shop.xcellence-it.com/nopaccelerate-plus

Feel free to reach me for any technical support.
1 year ago
RE: "only search by SKU is very slow."

Add an INDEX to the Product table
CREATE NONCLUSTERED INDEX [IX_Sku] ON [dbo].[Product]
(
  [Sku] ASC
)
1 year ago
Thank you!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.