Code Review: Run Number Refactoring Discussion
This was a very helpful episode. A thought for future code review episodes -- if you started with the original code and some unit tests you could show that your refactored code produces the same result. Also you'd be able to test the future dates without changing your computer's date.
I enjoyed this as well. Do you want Rails only code samples or Ruby code samples would help as well?
I don't have access to the full episode, but it sounds like what you need here is the little known Ruby method String#succ. I thought I'd just put this out there ;)
Sorta useful but if we wanted a simple increment always we could just use the database for that. Since we have more logic like years restart the count (or the numbers could be not successive in a lot of cases) that won't help in every case.
Always great to use those little ruby niceties when you can though! Thanks for the reminder!
What if iwant to use that run number for example on a transaction number. I think theres a chance to have the same last number on multiple request executed at the same time . Is active base locking the best solution or there is other option?
I didn't have time to get into that at all. One thing is that if you have a database unique index, then the database won't accept duplicate numbers which is good. You would probably want to add a "retry" in so that you could increment again and try that number maybe a few times.
I would have been great to measure gain in performance after refactoring. I would be surprise that the refactored methods are not more efficiency than the original one.
+1 for this series, I like a lot your thought process and how you incrementally start fixing the problem
Awesome episode dude!
I still got one question. Let's say I want to add this logic to an existing model with some existing entries in the database. How would I update them when I deploy the app?
For that, you'd probably want to build a Rake task to convert the existing data. For example, you'd want to probably use regex to parse out the existing strings into their parts and then reformat them with the new version. You don't want to run it through the new process exactly, so you'd end up writing some one-time-use code for this which makes the most sense to do in Rake or something similar.
Just watching this Episode Chris and I must say I love it.
I look forward to watching more.
I hope you still do Refactorings!