Skip to content

Commit 6f51b41

Browse files
committed
update doc
1 parent 764a14f commit 6f51b41

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

blog/tailcall-n+1-working-2024-08-04.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ The chunk data structure has the following properties:
188188
- `O(1)` complexity for append and concat operations.
189189
- Uses Reference Counting instead of Boxing to make cloning faster.
190190
- Can be converted to a vector of references to the elements in the chunk.
191-
- Allocates ZERO heap of its own.
192191

193192
You can clearly see that we don't actually perform an append or a concat operation instead we store a representation of that operation. This is a significant optimization because while performing the DFS, we create a lot of temporary query paths. However with the chunk data structure we don't need to allocate any additional memory on the heap or perform any form of wasted computation for paths that don't produce an N+1 query.
194193

0 commit comments

Comments
 (0)