Skip to content

Commit a681c0f

Browse files
committed
typo
1 parent 3bda40e commit a681c0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/querying/schema.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Enabling `--schema-info-enabled` incurs a performance cost because additional wo
255255
#### Performance Tips
256256
* __Label Changes on Nodes with Edges__: Changing labels on a node with existing edges can invalidate large parts of the schema. To avoid blocking queries during schema updates, define node labels before adding edges. Queries such as `CREATE (:A)-[:EDGE]->(:B)` are also fine.
257257
* __Edge Property Type Changes__: Modifying the type of an edge's property may require scanning large portions of the graph. To avoid this, define edges and their properties in the same transaction and keep property types stable.
258-
* __Recovery Using WALs__: Recovering edges with properties via Write-Ahead Log (WAL) files can cause a significant performance hit. To mitigate this, use snapshots instead. Starting from v2.21, this issue has been alleviate, when using WAL files created by v2.21+.
258+
* __Recovery Using WALs__: Recovering edges with properties via Write-Ahead Log (WAL) files can cause a significant performance hit. To mitigate this, use snapshots instead. Starting from v2.21, this issue has been alleviated, when using WAL files created by v2.21+.
259259

260260
## Schema metadata
261261

0 commit comments

Comments
 (0)