Search:

Type: Posts; User: GregBrannon

Search: Search took 0.11 seconds.

  1. Replies
    5
    Views
    2,133

    Re: Java hashmap access without exception

    Okay. Doesn't help me much, but I was hoping the questions I asked might give you some ideas where optimizations could occur. I suggest you use a profiler to find out what's taking so long.
  2. Replies
    5
    Views
    2,133

    Re: Java hashmap access without exception

    That's not what your original problem description said, though there is no distinction between access for "read only" versus "read/write." Besides, what's the use of reading data that is changing?
    ...
  3. Replies
    5
    Views
    2,133

    Re: Java hashmap access without exception

    "changing content at the same time" may be your problem. Access to the resource should be limited to one client at a time. Read up on java multithreading (or concurrency) and synchronized...
Results 1 to 3 of 3