Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 188059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:56:11+00:00 2026-05-11T15:56:11+00:00

I need a java data structure/solution that meets these requirements. What best fits these?

  • 0

I need a java data structure/solution that meets these requirements. What best fits these?

1) Object’s insertion order must be kept

2) Object’s must be unique (These are database objects that are uniquely identified by a UUID).

3) If a newer object with the same ID is added, the older version of the object should be over-written/removed

4) The Solution should be accessible by many threads.

5) When the first object added to the Structure is read/used, it should be removed from the data structure

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T15:56:12+00:00Added an answer on May 11, 2026 at 3:56 pm

    There are a couple of possibilities here. The simplest might be to start with a LinkedHashSet. That will provide you with the uniqueness and predictable ordering that you require. Then, you could wrap the resulting set to make it thread-safe:

    Set<T> s = Collections.synchronizedSet(new LinkedHashSet<T>(...)); 

    Note: Since a Set doesn’t really define a method for retrieving items from it, your code would have to manually invoke Set.remove(Object).

    Alternatively, you could wrap a LinkedHashMap, which does provide a hook for the delete-on-read semantics you require:

    class DeleteOnReadMap<K, V> implements Map<K, V> {      private Map<K, V> m = new LinkedHashMap<K, V>();      // implement Map 'read' methods Map with delete-on-read semantics     public V get(K key) {         // ...     }     // (other read methods here)      // implement remaining Map methods by forwarding to inner Map     public V put(K key, V value) {         return m.put(key, value);     }     // (remaining Map methods here) } 

    Finally, wrap an instance of your custom Map to make it thread-safe:

    Map<K, V> m = Collections.synchronizedMap(new DeleteOnReadMap<K, V>(...)); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 139k
  • Answers 139k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Since I wasn't satisfied with the answers, and hope that… May 12, 2026 at 7:44 am
  • Editorial Team
    Editorial Team added an answer I had almost the same problem as you. After a… May 12, 2026 at 7:44 am
  • Editorial Team
    Editorial Team added an answer You can change the Form.Text property of child windows to… May 12, 2026 at 7:44 am

Related Questions

I need an idea for an efficient index/search algorithm, and/or data structure, for determining
BerkeleyDB is the database equivalent of a Ruby hashtable or a Python dictionary except
I'm taking on the re-architecting of a pair of applications which use Hibernate in
for a programming assignment I have been asked to implement a solution to the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.