Coder Social home page Coder Social logo

Comments (4)

minhhungit avatar minhhungit commented on July 19, 2024

I think you should use only 1 instance, I got this kind of issue before due to multi IIS worker
If you use multi instance, try to setup difference generatorID for your instances

from idgen.

RobThree avatar RobThree commented on July 19, 2024

IdGen is meant to be used as singleton (or as transient with guaranteed unique generatorid). If you're getting duplicate ID's then you're most likely using multiple instances with the same generator id.

See #33 or #26 for example,

Also see our fresh new addition: FAQ

from idgen.

dimitkos avatar dimitkos commented on July 19, 2024

Because it is not clear to me, do you mean for example in the first instance of microservice to use for example UniqueIdGenerator.Configure(0);
and in the second instance of the microservice a different int like
UniqueIdGenerator.Configure(1);
in the program.cs class?

from idgen.

RobThree avatar RobThree commented on July 19, 2024

Yes; if you have multiple instances they each need their own GeneratorID; they don't "know" about eachothers existence (hence the 'uncoordinated' part*) and start generating ID's on their own. The only thing preventing collisions (duplicates) is each relying on having their own GeneratorId. But, if at all possible, I'd just use a singleton instance.

* That coordination is what you're supposed to do by either making sure each generator gets it's own GeneratorId or by just using a single instance.

from idgen.

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.