I’m not sure if I’m allowed to promote my own (relevant) articles on here, please let me know. I have a series of blogs about my takes on technology and a work in progress series on how to get computers to count really fast.
I’m not sure if I’m allowed to promote my own (relevant) articles on here, please let me know. I have a series of blogs about my takes on technology and a work in progress series on how to get computers to count really fast.
The way I try to make apps snappy is to choose time over space 90% of the time. Yes, I have had php processes that hit 1GB but I’d rather it gets done fast
You’re making a conscious trade off, which is better than most of the heavy apps out there, because they are slow and heavy. It would be interesting to document your decision making in some kind of blog post, especially if there is real hard data behind the decisions. That’s where the engineering lies.
I’ll be honest as a 1 man operation, my flowchart is fairly simple:
-Can psql do this? Then make the statement to do it
-Gotta do it on code? Make sure you have distinct read – process – save chunks so you can see whats slowing you down and minimize cache misses.