-
Updated
Dec 30, 2020 - Java
json-serialization
Here are 193 public repositories matching this topic...
-
Updated
Nov 26, 2020 - C#
Hey folks, thanks for a pretty bad ass library! I'm seeing a 3-3.3x gain when decoding fairly large JSON payloads (40-50MB) as compared stdlib/json-iterator.
Few things in the generated code that struck me as odd are the allocation sizes for slices/maps:
- Slice is set to size 1 initially, values are appended using
append
- Map does not have a default size specified
Instead of this, I
-
Updated
Dec 11, 2020 - Scala
-
Updated
Jun 30, 2020 - Ruby
-
Updated
Dec 7, 2019 - Objective-C
-
Updated
Nov 17, 2020 - PHP
-
Updated
Jan 1, 2021 - C++
-
Updated
Dec 14, 2020 - C++
-
Updated
Aug 15, 2019 - Python
-
Updated
Sep 25, 2019 - C++
-
Updated
Aug 11, 2019 - C#
We want to implement a custom method with payload key name as metricValues
, but the proper ruby method name should be snake_case.
class MetricPeriodSerializer < Panko::Serializer
attributes :period, :metricValues
def metricValues
[{
'name' => 'metric1',
'value' => object.metric_1
},
{
-
Updated
Dec 31, 2020 - C++
-
Updated
Nov 12, 2020 - JavaScript
-
Updated
Sep 14, 2020 - C#
-
Updated
Apr 2, 2018 - JavaScript
-
Updated
Dec 5, 2018 - Kotlin
-
Updated
Jul 20, 2020 - C++
-
Updated
Sep 5, 2020 - C++
-
Updated
Jan 1, 2021 - Go
The moveToKey
function is a O(n)
search from its current position to the desired key or an error from the end of the object. The succinct data structures make this incredibly fast and the movements are super efficient.
But how efficient this is remains to be measured. Create benchmarks for an increasing in size ordered key object and find out where we run into performance problems by lookin
-
Updated
Dec 16, 2020 - D
-
Updated
Jun 30, 2020 - C#
-
Updated
Sep 2, 2017 - Java
-
Updated
Nov 9, 2020 - Scala
Improve this page
Add a description, image, and links to the json-serialization topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the json-serialization topic, visit your repo's landing page and select "manage topics."
I think we should patch test/CMakeLists.txt to always use
-Wall -Werror
on *nix and the corresponding MSVC flags. It is way too easy to overlook a warning in the CI output as #1797 has shown.@nlohmann Thoughts?