I have been building a large scale rails app and it has come time to refactor it.
What tips can you offer me, or resources can you point me to? I am especially interested in making my database calls more efficient.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“Making database calls more efficient” is not refactoring, it is performance tuning.
Do performance tests and look carefully at your logs to help guide you on what to work on first.
Find out which are your slowest queries and work on them.
Re: Refactoring tips