mirror of
https://github.com/ProxymanApp/Proxyman.git
synced 2026-04-25 16:15:55 +03:00
[GH-ISSUE #171] Improve high-performance JSON library #168
Labels
No labels
Discussion
Feature request
In Progress...
Plugins
Waiting response
Windows
Windows
bug
duplicate
enhancement
feature
good first issue
iOS
macOS 10.11
question
wontfix
✅ Done
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Proxyman#168
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @NghiaTranUIT on GitHub (Jun 11, 2019).
Original GitHub issue: https://github.com/ProxymanApp/Proxyman/issues/171
Originally assigned to: @NghiaTranUIT on GitHub.
🐶 Brief
JSONSerialization has a limitation when parsing float number. It results in
0.00000002because the float number is represented by NSNumber, and renders in 0.000002. Additionally, it's also they way computer store float number.We have to find alternative approach to pretty json efficiently.
https://github.com/nlohmann/json could be potential candidates.
👑 Criteria
@NghiaTranUIT commented on GitHub (Jun 12, 2019):
All done. Related to #169