Coder Social home page Coder Social logo

Comments (6)

jakobbrezigar avatar jakobbrezigar commented on May 22, 2024

I still get errors with these numbers:

data1:= []byte(`{"price": 5620.1400000000003}`)
data2:= []byte(`{"price": 0.00058273999999999999}`)

Consider using slice of float64 for pow10uint64 (var pow10float64 = [24]float64), so I could add bigger divider numbers. Or maybe consider using big.Int?

from gojay.

francoispqt avatar francoispqt commented on May 22, 2024

Hi,

Let me check these numbers and try to find a decent solution. I think the standard package rounds these numbers when parsing them, so I think if your intention is to be able to use these numbers with arbitrary precision the best would be to parse them into big.Float from the math/big package.

I'm experimenting to see what we can do, I'll come back to you.

from gojay.

francoispqt avatar francoispqt commented on May 22, 2024

So I've decided to truncate these numbers when parsing them. Will push an update later today to master and a new release soon.

from gojay.

francoispqt avatar francoispqt commented on May 22, 2024

I've run these benchmarks:

var bigf = []byte(`0.00058273999999999999`)

// BenchmarkBigFloatEncodingJSON decodes a big float with the standard package
func BenchmarkBigFloatEncodingJSON(b *testing.B) {
	b.ReportAllocs()
	for n := 0; n < b.N; n++ {
		var f float64
		var _ = json.Unmarshal(bigf, &f)
	}
}

// BenchmarkBigFloatGojay decodes a big float with gojay
func BenchmarkBigFloatGojay(b *testing.B) {
	b.ReportAllocs()
	for n := 0; n < b.N; n++ {
		var f float64
		var _ = gojay.Unmarshal(bigf, &f)
	}
}

And the results are the following:

--- encoding/json
goos: darwin
goarch: amd64
pkg: github.com/francoispqt/gojay/benchmarks/decoder
BenchmarkBigFloatEncodingJSON-8   	 2000000	       627 ns/op	     328 B/op	       3 allocs/op
PASS
ok  	github.com/francoispqt/gojay/benchmarks/decoder	1.929s
Success: Benchmarks passed.

--- gojay
goos: darwin
goarch: amd64
pkg: github.com/francoispqt/gojay/benchmarks/decoder
BenchmarkBigFloatGojay-8   	10000000	       177 ns/op	       8 B/op	       1 allocs/op
PASS
ok  	github.com/francoispqt/gojay/benchmarks/decoder	1.989s
Success: Benchmarks passed.

from gojay.

francoispqt avatar francoispqt commented on May 22, 2024

Please check with the current master and close the issue. I will add decoding to big.Float and big.Int, you could already do it by first decoding to a gojay.EmbeddedJSON which is basically a []byte and then use big.ParseFloat.

from gojay.

francoispqt avatar francoispqt commented on May 22, 2024

Not getting any answer so I'm closing. Just reopen if it is not fixed. Thanks!

from gojay.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.