-
- Downloads
There was a problem fetching the pipeline summary.
Improve performance of User.by_login
Performance is improved in two steps: 1. On PostgreSQL an expression index is used for checking lower(email) and lower(username). 2. The check to determine if we're searching for a username or Email is moved to Ruby. Thanks to @haynes for suggesting and writing the initial implementation of this. Moving the check to Ruby makes this method an additional 1.5 times faster compared to doing the check in the SQL query. With performance being improved I've now also tweaked the amount of iterations required by the User.by_login benchmark. This method now runs between 900 and 1000 iterations per second.
parent
fb778562
No related branches found
No related tags found
Pipeline #
Showing
- CHANGELOG 1 addition, 0 deletionsCHANGELOG
- app/models/user.rb 8 additions, 2 deletionsapp/models/user.rb
- db/migrate/20151008110232_add_users_lower_username_email_indexes.rb 17 additions, 0 deletions.../20151008110232_add_users_lower_username_email_indexes.rb
- lib/tasks/migrate/setup_postgresql.rake 2 additions, 0 deletionslib/tasks/migrate/setup_postgresql.rake
- spec/benchmarks/models/user_spec.rb 3 additions, 1 deletionspec/benchmarks/models/user_spec.rb
Please register or sign in to comment