chaokunyang opened a new issue, #1957:
URL: https://github.com/apache/fury/issues/1957
### 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:
- 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_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]