Skip to content

Commit

Permalink
Improve performance of DelayedsExpr through caching (dask#1132)
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait authored Sep 2, 2024
1 parent 62804a0 commit 4e5a635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask_expr/_expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -2986,7 +2986,7 @@ def __init__(self, *delayed_objects):
def __str__(self):
return f"{type(self).__name__}({str(self.operands[0])})"

@property
@functools.cached_property
def _name(self):
return "delayed-container-" + _tokenize_deterministic(*self.operands)

Expand Down

0 comments on commit 4e5a635

Please sign in to comment.