|
|
|
|
|
by 3pt14159
1554 days ago
|
|
> n'th degree of performance and memory control, don't pick Python, for instance. Or be comfortable rolling the critical parts in another language like cython, which I've done and got a 10000x performance speedup because the hot part of the code fit in the CPU cache and the rest was plain old python. There are times to start with something like Go when you're absolutely sure you'll need it, but I rarely regret starting in Python. It's usually easy enough to shift a single endpoint to another language or to use extensions to call into something faster. |
|