Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does it not support multithreading? #64

Open
wycst opened this issue Nov 27, 2024 · 4 comments
Open

Does it not support multithreading? #64

wycst opened this issue Nov 27, 2024 · 4 comments

Comments

@wycst
Copy link

wycst commented Nov 27, 2024

Hello, the project is very good. Recently, during testing with JMH, it was found that errors occur in multi-threaded environments. Does it currently not support multi-threaded concurrency?

@piotrrzysko
Copy link
Member

Hello, the SimdJsonParser is not thread-safe. However, you can create a dedicated instance for each thread and store it in a thread-local field. This should work well in multi-threaded environments.

@wycst
Copy link
Author

wycst commented Feb 7, 2025

Hello, the SimdJsonParser is not thread-safe. However, you can create a dedicated instance for each thread and store it in a thread-local field. This should work well in multi-threaded environments.

Hello, would you mind adding the wast library( https://github.com/wycst/wast )Compare performance

implementation("io.github.wycst:wast:0.0.23")

DOM Parser

List<JSONNode> users = JSONNode.collect(buffer, "/statuses/*/user");
Set<String> defaultUsers = new HashSet<>();
for (JSONNode user : users) {
    if (user.getChildValue("default_profile", boolean.class)) {
        defaultUsers.add(user.getChildValue("screen_name", String.class));
    }
}
return defaultUsers.size();

Schema-Based Parser

Set<String> defaultUsers = new HashSet<>();
SimdJsonTwitter twitter = io.github.wycst.wast.json.JSON.parseObject(buffer, SimdJsonTwitter.class);
for (SimdJsonStatus status : twitter.statuses) {
    SimdJsonUser user = status.user;
    if (user.default_profile) {
        defaultUsers.add(user.screen_name);
    }
}
return defaultUsers.size();

@piotrrzysko
Copy link
Member

Hi, have you run the benchmarks? If so, could you share the results?

@wycst
Copy link
Author

wycst commented Feb 27, 2025

Hi, have you run the benchmarks? If so, could you share the results?

Test code
https://github.com/wycst/wast-jmh-test/blob/main-openjdk23/src/main/java/com/jmh/test/simdjson/TwitterJmhTest.java

The result of running on the Windows platform (window10 + i5 + JDK 21)
https://github.com/wycst/wast-jmh-test/blob/main-openjdk23/WastJson_vs_SimdJson_TwitterJmhTest_2024_11_27_RAW.md

Benchmark Mode Cnt Score Error Units TwitterJmhTest.parseAndSelect_SimdjsonJava thrpt 5 1370.652 ± 37.171 ops/s TwitterJmhTest.parseAndSelect_WastJson thrpt 5 1997.455 ± 275.386 ops/s TwitterJmhTest.schemaBasedParseAndSelect_SimdjsonJava thrpt 5 2092.163 ± 98.596 ops/s TwitterJmhTest.schemaBasedParseAndSelect_WastJson thrpt 5 2654.975 ± 102.240 ops/s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants