Ask HN: mypy is used in production?
I'm curious, is anyone using mypy in a production environment? What are your thoughts on introducing mypy from the beginning of development? Are you for or against it?
I'm curious, is anyone using mypy in a production environment? What are your thoughts on introducing mypy from the beginning of development? Are you for or against it?
These tools likely don't permit users to directly manipulate an actual database table. Therefore, I believe they adopt alternative approaches.
My hypothesis is that they might utilize NoSQL databases and treat each row as a discrete item.
However, ensuring reference consistency without using real table features might be very challenging. Some tools offer a "calculated column" feature, which stores the results of complex functions that take the results of referenced tables as input. Caching and data change notifications might do the job, but is it really feasible?
Furthermore, I suspect that performance might be severely degraded in such an architecture if the number of rows grows significantly.
Any thoughts?