Code Monkey home page Code Monkey logo

Comments (3)

rittneje avatar rittneje commented on September 2, 2024

ping @pborman

from uuid.

joewreschnig avatar joewreschnig commented on September 2, 2024

The pool API looks pretty dangerous and unnecessary to me also.

The speed gain comes almost entirely from the buffered I/O, which did not require a new API. The remaining allocation is the UUID itself which could be improved in a generally-useful way by having a function to fill a received pointer:

func NewRandomFromReader(r io.Reader) (UUID, error) {
	var uuid UUID
	return uuid, ReadRandom(r, &uuid)
}

func ReadRandom(r io.Reader, uuid *UUID) error {
	_, err := io.ReadFull(r, uuid[:])
	if err != nil {
		return err
	}
	uuid[6] = (uuid[6] & 0x0f) | 0x40 // Version 4
	uuid[8] = (uuid[8] & 0x3f) | 0x80 // Variant is 10
	return nil
}
func BenchmarkUUID_NewBufio(b *testing.B) {
	b.RunParallel(func(pb *testing.PB) {
		r := bufio.NewReaderSize(rander, randPoolSize)
		for pb.Next() {
			_, err := NewRandomFromReader(r)
			if err != nil {
				b.Fatal(err)
			}
		}
	})
}

func BenchmarkUUID_ReadRandom(b *testing.B) {
	b.RunParallel(func(pb *testing.PB) {
		r := bufio.NewReaderSize(rander, randPoolSize)
		var uuid UUID
		for pb.Next() {
			err := ReadRandom(r, &uuid)
			if err != nil {
				b.Fatal(err)
			}
		}
	})
}
BenchmarkUUID_NewBufio-4    	 6769986	       176.0 ns/op	      16 B/op	       1 allocs/op
BenchmarkUUID_ReadRandom-4   	 7622210	       155.6 ns/op	       0 B/op	       0 allocs/op

These are also lock-free (or as lock-free as the reader allows) approaches. On my system ReadRandom consistently beats NewPooled, I assume because of less lock contention.

from uuid.

pborman avatar pborman commented on September 2, 2024

As mentioned i a code review, these should be limited to package main. Libraries that want a different generator should call a different function. The good new is, that unlike Version 1 UUIDs, Version 4 uuids can be safely generated by multiple packages. Version 1 UUIDs are based on state and it is possible (though unlikely) for two packages to produce either the same UUIDs or UUIDs in which time goes backwards.

from uuid.

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.