Skip to content

Commit

Permalink
Improve in-memory directory server concurrency
Browse files Browse the repository at this point in the history
Updated the in-memory directory server to improve its concurrency
when performing operations that don't need to make changes to the
data.
  • Loading branch information
dirmgr committed Apr 26, 2024
1 parent efd0cc6 commit 09f70ea
Show file tree
Hide file tree
Showing 3 changed files with 140 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,13 @@ public class SanityCheck
"com.unboundid.util.json",
"com.unboundid.util.parallel",
"com.unboundid.util.ssl",
"com.unboundid.util.ssl.cert"
"com.unboundid.util.ssl.cert",

// NOTE: These aren't packages, but they have inner lock classes that might
// be directly imported, and it's easier to just list them as packages
// rather than handle that specially.
"com.unboundid.util.CloseableLock",
"com.unboundid.util.CloseableReadWriteLock"
};


Expand Down
6 changes: 6 additions & 0 deletions docs/release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ <h3>Version 7.0.1</h3>
<br><br>
</li>

<li>
Updated the in-memory directory server to improve its concurrency when performing
operations that don't need to make changes to the data.
<br><br>
</li>

<li>
Added createSubstringAssertion methods to the filter class, which make it easier
to construct the string representation of a substring assertion with a given
Expand Down
Loading

0 comments on commit 09f70ea

Please sign in to comment.