Home > other >  Slow Response from ABP Authentication
Slow Response from ABP Authentication

Time:09-30

I have just downloaded and configured my first ABP solution and I'm having a performance problem.

I chose the option to have a separate site for IdentityServer. I configured a database and changed the ConnectionString entries in the appsettings.json files of the Hosts project, Migration project, and the IdentityServer project. I followed all the instructions in the Angular site showing significant delay in loading

CodePudding user response:

As you've pointed out, your performance issue is probably related to the improper Redis configuration. It really helps to downgrade response time.

  • You need to check the Redis running on port 6379, and also check does it get requests.

  • You might find useful this comment if you have a question about why I need to use Redis. (Redis can help you to share data between IdentityServer and your host application.)

"run the command docker run --nameredis-container -p 6379:6379 -d redis and change the redis connection string in your appsettings to localhost:6379." https://github.com/abpframework/abp/issues/3487#issuecomment-611208048

  • Related