Skip to content

Commit 9f3b7eb

Browse files
committed
feat(Lock): use RawSemaphore to improve performance
benchmark time (avg) iter/s (min … max) p75 p99 p995 --------------------------------------------------------------- ----------------------------- group Lock#lock current 231.74 µs/iter 4,315.2 (206.46 µs … 700.42 µs) 215.5 µs 488.58 µs 505.96 µs v1.0.0 52.28 ms/iter 19.1 (47.25 ms … 55.24 ms) 54.78 ms 55.24 ms 55.24 ms summary current 225.59x faster than v1.0.0
1 parent 6b093da commit 9f3b7eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lock.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Mutex } from "./mutex.ts";
1+
import { RawSemaphore } from "./_raw_semaphore.ts";
22

33
/**
44
* A mutual exclusion lock that provides safe concurrent access to a shared value.
@@ -16,7 +16,7 @@ import { Mutex } from "./mutex.ts";
1616
* ```
1717
*/
1818
export class Lock<T> {
19-
#mu = new Mutex();
19+
#sem = new RawSemaphore(1);
2020
#value: T;
2121

2222
/**
@@ -32,7 +32,7 @@ export class Lock<T> {
3232
* Returns true if the lock is currently locked, false otherwise.
3333
*/
3434
get locked(): boolean {
35-
return this.#mu.locked;
35+
return this.#sem.locked;
3636
}
3737

3838
/**
@@ -43,11 +43,11 @@ export class Lock<T> {
4343
* @returns A Promise that resolves with the result of the function.
4444
*/
4545
async lock<R>(fn: (value: T) => R | PromiseLike<R>): Promise<R> {
46-
const lock = await this.#mu.acquire();
46+
await this.#sem.acquire();
4747
try {
4848
return await fn(this.#value);
4949
} finally {
50-
lock[Symbol.dispose]();
50+
this.#sem.release();
5151
}
5252
}
5353
}

0 commit comments

Comments
 (0)