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
Remove pyfury python implementation, use pure cython only
Is your feature request related to a problem? Please describe
Currently pufury has two implementation for object graph serialization:
pure python:
python/pyfury/_serializer.py
python/pyfury/_fury.py
cython based:
python/pyfury/_serialization.pyx
Pure python version is easy for debugging, especially for debugging complex object graph serialization, since cython code is not easy to debug.
But the code for both are very similar, thus incurred a big maintain overhead.
Describe the solution you'd like
Remove most pure python serializer, only reserve serializer dispatch framework, and keep it as the most simple way, the performance is not a requirement
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
chaokunyang
changed the title
[RFC] Remove pyfury python implementation, use pure cython only
[RFC] Remove most pyfury pure python serializers, use pure cython only
Nov 24, 2024
chaokunyang
changed the title
[RFC] Remove most pyfury pure python serializers, use pure cython only
Remove most pyfury pure python serializers, use pure cython only
Nov 24, 2024
Feature Request
Remove pyfury python implementation, use pure cython only
Is your feature request related to a problem? Please describe
Currently pufury has two implementation for object graph serialization:
python/pyfury/_serializer.py
python/pyfury/_fury.py
python/pyfury/_serialization.pyx
Pure python version is easy for debugging, especially for debugging complex object graph serialization, since cython code is not easy to debug.
But the code for both are very similar, thus incurred a big maintain overhead.
Describe the solution you'd like
Remove most pure python serializer, only reserve serializer dispatch framework, and keep it as the most simple way, the performance is not a requirement
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: