index
:
lowmemjson
main
Package lowmemjson is an alternative to the standard library's encoding/json that has lower memory requirements for large data structures.
Luke T. Shumaker
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Age
Commit message (
Collapse
)
Author
2023-02-20
Merge branch 'lukeshu/fixes'
Luke Shumaker
2023-02-19
compat/json: Correctly handle syntax-error-in-decode
Luke Shumaker
2023-02-18
reencode: Don't normalize the capitalization of \uXXXX hex escapes
Luke Shumaker
2023-02-18
compat/json: Indent: Preserve trailing whitespace
Luke Shumaker
2023-02-18
compat/json: Don't do actual JSON parsing in HTMLEscape
Luke Shumaker
2023-02-18
reencode: Add CompactFloats
Luke Shumaker
2023-02-18
encode, reencode: Fix handling of invalid UTF-8
Luke Shumaker
2023-02-18
reencode: Fix .stackSize
Luke Shumaker
2023-02-18
reencode: Rethink the UTF-8 buffer
Luke Shumaker
2023-02-18
compat/json: Compact, Indent: Clear the output if there's an error
Luke Shumaker
2023-02-18
compat/json: Valid: Check for EOF
Luke Shumaker
2023-02-18
reencode: Fix trimming trailing zeros
Luke Shumaker
2023-02-18
Merge branch 'lukeshu/scan-behavior'
Luke Shumaker
2023-02-18
jsonparse: Have PushReadBarrier reject trailing whitespace
Luke Shumaker
2023-02-18
decode_scan, jsonparse: Rework the behavior to make a bit more sense
Luke Shumaker
- decode_scan: Don't have .Reset() re-play an erroring rune - decode_Scan: Have RuneTypeEOF always be zero-width - jsonparse: Don't replace syntax errors with RuneTypeEOF if there's no barrier
2023-02-18
Merge branch 'lukeshu/scan-tidy'
Luke Shumaker
2023-02-18
decode_scan: Fix a doc comment
Luke Shumaker
2023-02-18
decode_scan: s/initialized/rTypeOK/
Luke Shumaker
2023-02-18
decode_scan: Add a bunch of tests
Luke Shumaker
2023-02-18
decode_scan: Go ahead and decrement sc.offset when unreading
Luke Shumaker
2023-02-18
decode_scan: PopReadBarrier, Reset: De-couple the .repeat and EOF cases
Luke Shumaker
This duplicates code, but it's confusing thinking about them together.
2023-02-18
decode_scan: Move Reset() to be by PopReadBarrier()
Luke Shumaker
2023-02-18
jsonparse: Fix a mistake in the comments
Luke Shumaker
2023-02-18
jsonparse: Remove barrier.closed, as it is always false
Luke Shumaker
2023-02-18
fastio: NewAllWriter: Add a special case for io.Discard
Luke Shumaker
2023-02-16
ReleaseNotes.md: Fix a typo
Luke Shumaker
2023-02-16
Prepare v0.3.6 release
v0.3.6
Luke Shumaker
2023-02-16
Merge branch 'lukeshu/reencode-refactor'
Luke Shumaker
2023-02-16
reencode: Factor into separate modules
Luke Shumaker
2023-02-16
Merge branch 'lukeshu/perf'
Luke Shumaker
2023-02-16
reencode: utf8.RuneLen is showing up in the profile
Luke Shumaker
2023-02-16
encode: Avoid allocations when formatting integers
Luke Shumaker
2023-02-16
Avoid io.Writer causing buffers to escape to the heap
Luke Shumaker
2023-02-16
compat/json: Use fastio.Discard instead of io.Discard
Luke Shumaker
2023-02-16
Merge branch 'lukeshu/misc'
Luke Shumaker
2023-02-16
reencode: Don't bother tracking the number of bytes written
Luke Shumaker
2023-02-16
Clean up the hex handling
Luke Shumaker
2023-02-16
reencode: Update the doc comment about all the interfaces implemented
Luke Shumaker
2023-02-16
reencode: Don't have the ReEncoderConfig member be public
Luke Shumaker
2023-02-16
Move string-encoding to an internal/jsonstring package
Luke Shumaker
2023-02-16
mv compat/json/{compat,testcompat}_test.go
Luke Shumaker
2023-02-10
Merge branch 'lukeshu/reencode-io'
Luke Shumaker
2023-02-10
encoder, reencoder: Distinguish between syntax errors and I/O errors
Luke Shumaker
2023-02-10
Merge branch 'lukeshu/panic'
Luke Shumaker
2023-02-10
tree-wide: Audit panic error messages
Luke Shumaker
These shouldn't happen, but if they do, then let's make it easier to debug.
2023-02-10
Merge branch 'lukeshu/decode-no-panic'
Luke Shumaker
2023-02-10
decode: decodeAny: Use rune types rather that char literals
Luke Shumaker
2023-02-10
decode: Remove now-superfluous recover blocks
Luke Shumaker
2023-02-10
decode: Have .readRune() and .expectRune() return *DecodeError
Luke Shumaker
2023-02-10
decode: Have .peekRuneType() return a *DecodeError
Luke Shumaker
[next]