Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hugegraph-commons/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ numeric or collection util classes to simplify the development of HugeGraph and

## Components

- Lock: atomic lock, key lock, lock group and lock manger
- Lock: atomic lock, key lock, lock group and lock manager
- Config: register and load config option with security check
- Event: listening and notification, do something asynchronously
- Iterator: some iterators with extra functions, map, filter, extend, etc.
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-commons/hugegraph-common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ its components.

## Components

- Lock: atomic lock, key lock, lock group and lock manger
- Lock: atomic lock, key lock, lock group and lock manager
- Config: register and load config option with security check
- Event: listening and notification, do something asynchronously
- Iterator: some iterators with extra functions, map, filter, extend, etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static RolePermission role(String graphSpace, String graph,
perm.ordinal() >= HugePermission.READ.ordinal()) {
role.add(graphSpace, graph, perm, HugeResource.ALL_RES);
} else {
// if perm is not read, write, delete or excute, set resources null
// if perm is not read, write, delete or execute, set resources null
role.add(graphSpace, graph, perm, null);
}
return role;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public long reclaimGlobally(MemoryPool queryPool, long neededBytes) {
if (memoryPool.equals(queryPool)) {
continue;
}
LOG.info("Global reclaim triggerred by {} select {} to reclaim", queryPool,
LOG.info("Global reclaim triggered by {} select {} to reclaim", queryPool,
memoryPool);
long res = memoryPool.tryToReclaimLocalMemory(currentNeededBytes, queryPool);
totalReclaimedBytes += res;
Expand Down
Loading