Suppose you have written a prototype for an application in python, now you want to rewrite it in c++ for speed reasons and to make a real software out of it.
What are things to consider before starting to do this?
I read a couple of posts about "Big Rewrite", but i am unsure if this is the same or different topic?
Is it a good strategy to try to copy every function as similar as possible and rewrite function for function?
For every special purpose library like the logging module/pandas/etc. Do you look for a similar library in C++?