You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the Data structs are handled (allocated by factory using Model::createData() member functions) as std::shared_ptr of their base classes. shared_ptr is heavy, has an atomic lock, and is super slow. We should get rid of them entirely.
The text was updated successfully, but these errors were encountered:
Right now the Data structs are handled (allocated by factory using
Model::createData()
member functions) asstd::shared_ptr
of their base classes. shared_ptr is heavy, has an atomic lock, and is super slow. We should get rid of them entirely.The text was updated successfully, but these errors were encountered: