Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizPlease log in to access this content. You will be redirected to the login page shortly.
LoginGeneral Tech Technology & Software 2 years ago
Posted on 16 Aug 2022, this text provides information on Technology & Software related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Please log in to access this content. You will be redirected to the login page shortly.
LoginReady to take your education and career to the next level? Register today and join our growing community of learners and professionals.
manpreet
Best Answer
2 years ago
I'm looking for 3rdparty service in order to create/emulate something similar to a Postgres sequence database object.
I need this thread safe functionality in order to be able to ask it for next, unique
Long
value. I'm going to use this value as a surrogate key for my Spring Boot/Neoj4 application entities.The main criterion is a speed. It should be pretty fast and durable(not only in memory but also persisted to HDD in order to survive after crashes and restarts)
Also, I don't want to go with
UUID
because I have to expose these IDs within my web application url parameters and in case ofUUID
my urls look awful. I want to go with a plain Long values for IDs.Could you please suggest some database/service/technology that can be installed on my server and called for the unique IDs ?
UPDATED
Is it possible to implement fault-tolerant(persisted) AtomicLong sequence with Apache ZooKeeper or Hazelcast ? If so, is there any open source implementation of this solution that can be downloaded and used?