Giter Site home page Giter Site logo

Comments (6)

jansupol avatar jansupol commented on August 17, 2024

@e-hubert-opti Can you describe the process leading to the ineffective value of _maxEntries? How do the multiple threads skip the check?

from jersey.

e-hubert-opti avatar e-hubert-opti commented on August 17, 2024

Maybe sharing simple unit tests helps more than long descriptions?

@Test
void test_sequential_usage_of_lru_map() {
    Map<Integer, Integer> lruMap = new LRUMap<>(16, 120);

    for (int i = 0; i < 100000; i++) {
        lruMap.put(i, i);
    }

    assertThat(lruMap.size()).isLessThanOrEqualTo(120);
}

@Test
void test_concurrent_usage_of_lru_map() {
    Map<Integer, Integer> lruMap = new LRUMap<>(16, 120);
    ExecutorService executorService = Executors.newFixedThreadPool(10);

    for (int i = 0; i < 100000; i++) {
        int tmp = i;
        executorService.submit(() -> lruMap.put(tmp, tmp));
    }

    assertThat(lruMap.size()).isLessThanOrEqualTo(120);
}

While the first one obviously passes, the second one gives something like this:
java.lang.AssertionError:
Expecting actual:
33670
to be less than or equal to:
120

Replacing the LRUMap with a thread-safe implementation or synchronizing it (e,g. lruMap = Collections.synchronizedMap(new LRUMap<>(16, 120)) ) will of course also turn the second test green again.

from jersey.

e-hubert-opti avatar e-hubert-opti commented on August 17, 2024

As the Jackson maintainers were very responsive and immediately replaced the usage of com.fasterxml.jackson.jaxrs.util.LRUMap by com.fasterxml.jackson.databind.util.LRUMap (see FasterXML/jackson-jaxrs-providers@60e6941) I adjusted the import in the test above and it looks likes this implementation also fails. Will try to have a closer look.

from jersey.

e-hubert-opti avatar e-hubert-opti commented on August 17, 2024

All good with the change to com.fasterxml.jackson.databind.util.LRUMap. I had a look in the implementation of PrivateMaxEntriesMap and noticed the async draining, so it is just the test which needs to be adjusted for this.

from jersey.

jansupol avatar jansupol commented on August 17, 2024

@e-hubert-opti Thank you, we'll use Jackson 2.16.1 with the fix when available.

from jersey.

jansupol avatar jansupol commented on August 17, 2024

2.16.1 is released.

from jersey.

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.