-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
OSS Broadcast support #3285
OSS Broadcast support #3285
Conversation
Codecov ReportBase: 66.93% // Head: 66.98% // Increases project coverage by
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files@@ Coverage Diff @@
## master #3285 +/- ##
============================================
+ Coverage 66.93% 66.98% +0.04%
- Complexity 4641 4650 +9
============================================
Files 258 263 +5
Lines 15027 15053 +26
Branches 938 949 +11
============================================
+ Hits 10059 10083 +24
+ Misses 4565 4563 -2
- Partials 403 407 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@sazzad16 WDYT about adding examples (and a jedis-examples pom) with this PR? This would be the first one, but IMHO for a PR like this, it's nice, because it's easier to see the usage of the implementation? |
src/main/java/redis/clients/jedis/exceptions/JedisBroadcastException.java
Outdated
Show resolved
Hide resolved
@chayim It's not possible due to the current structure of this repo. We'd have to restructure it with a main parent directory which would contain several directories, i.e. jedis-examples, as well as |
I mean we have src/main and src/tests, why not src/examples, and exclude it from the package...? This can also be out of scope. Alternatively we add an examples tree at the top, with at least a single file end-to-ending it as part of this. |
Those directories are following maven standard.
That's not part of maven standard. You still can if you want but that wouldn't be following any standard directory structure.
I don't understand. |
src/test/java/redis/clients/jedis/examples/BroadcastCommandsToAllClusterNodes.java
Outdated
Show resolved
Hide resolved
* OSS Cluster Broadcast - Approach 2 * modify * Added doc * Added configSet * Added example as Java class * Added exception message from code review * Added the link of examples package in README * Deleted doc * Addressed review
No description provided.