In CPython we have reference counting. My question is can we optimize current 
RC using
strategies like Deferred RC and Coalescing? If no then where would I face 
problems if I try
to implement these sorts of strategies?

These strategies all depend on the concept that we don't need the exact value of
reference count all the time. So far in my observation, we only need exact 
value before
running a cycle collector.  If we can manage to make sure that we have exact 
value before
entering the cycle collector then in my opinion we can add these optimizations 
strategies
to some extent.  Is there something that I am missing? Or It is quite possible? 
If not
possible please tell me the factors I should consider.

Thanks in advance.
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/YOQGF2QSOJSRPOJIYLJMMT72E6OTVLQP/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to