sjson VS pflag

Compare sjson vs pflag and see what are their differences.

sjson

Set JSON values very quickly in Go (by tidwall)

pflag

Drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags. (by spf13)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
sjson pflag
7 13
2,310 2,312
- -
0.0 0.0
11 days ago 10 days ago
Go Go
MIT License BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

sjson

Posts with mentions or reviews of sjson. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-04.
  • Rob Pike: Gobs of data (2011)
    10 projects | news.ycombinator.com | 4 Dec 2023
    Someone made a benchmark of serialization libraries in go [1], and I was surprised to see gobs is one of the slowest ones, specially for decoding. I suspect part of the reason is that the API doesn't not allow reusing decoders [2]. From my explorations it seems like both JSON [3], message-pack [4] and CBOR [5] are better alternatives.

    By the way, in Go there are a like a million JSON encoders because a lot of things in the std library are not really coded for maximum performance but more for easy of usage, it seems. Perhaps this is the right balance for certain things (ex: the http library, see [6]).

    There are also a bunch of libraries that allow you to modify a JSON file "in place", without having to fully deserialize into structs (ex: GJSON/SJSON [7] [8]). This sounds very convenient and more efficient that fully de/serializing if we just need to change the data a little.

    --

    1: https://github.com/alecthomas/go_serialization_benchmarks

    2: https://github.com/golang/go/issues/29766#issuecomment-45492...

    --

    3: https://github.com/goccy/go-json

    4: https://github.com/vmihailenco/msgpack

    5: https://github.com/fxamacker/cbor

    --

    6: https://github.com/valyala/fasthttp#faq

    --

    7: https://github.com/tidwall/gjson

    8: https://github.com/tidwall/sjson

  • Introducing Dot: The Magical Path Manipulator for Go! (open source)
    2 projects | /r/golang | 28 Jun 2023
    A similar project: https://github.com/tidwall/sjson
  • Modification of json string without deserialisation into map/struct
    3 projects | /r/golang | 5 Jun 2023
  • Need help on appending fields to json bytes
    1 project | /r/golang | 21 Apr 2023
  • Anyone learning Go or building a side project?
    1 project | /r/golang | 29 Jun 2022
    Not sure what you need to do but there is https://github.com/tidwall/sjson for quick manipulation.
  • Small Side Project On Sunday: Small Tool To Bump The Version
    6 projects | dev.to | 15 Jun 2022
  • What are your favorite packages to use?
    55 projects | /r/golang | 15 Aug 2021
    I love https://github.com/tidwall/gjson and https://github.com/tidwall/sjson for fast and frictionless json reading and editing. It makes life so much easier for cases where you don't want to model a tree of nightmare-ish API responses, like Elasticsearch.

pflag

Posts with mentions or reviews of pflag. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-07.

What are some alternatives?

When comparing sjson and pflag you can also consider the following projects:

GJSON - Get JSON values quickly - JSON parser for Go

flag - Flag is a simple but powerful command line option parsing library for Go support infinite level subcommand

sqlx - general purpose extensions to golang's database/sql

cobra - A Commander for modern Go CLI interactions

dot - Dot: A powerful Go package simplifying navigation and manipulation of complex data structures via dot-separated paths. Features include insertion into struct fields, maps, arrays, slices, and channels, along with robust error handling and support for diverse map keys.

kingpin - CONTRIBUTIONS ONLY: A Go (golang) command line and flag parser

Gin - Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.

go-flags - go command line option parser

zerolog - Zero Allocation JSON Logger

complete - bash completion written in go + bash completion for go command

godotenv - A Go port of Ruby's dotenv library (Loads environment variables from .env files)

argparse - Argparse for golang. Just because `flag` sucks