Don't `@lru_cache` on `Viz.i_from_t()`, since view state..

log_linearized_curve_overlays
Tyler Goodlet 2023-03-06 18:30:58 -05:00
parent 05aee4a311
commit 4bb580ae60
1 changed files with 15 additions and 3 deletions

View File

@ -1372,18 +1372,30 @@ class Viz(Struct):
case 'both':
return r_up, r_down
@lru_cache(maxsize=6116)
# @lru_cache(maxsize=6116)
def i_from_t(
self,
t: float,
) -> int:
return slice_from_time(
return_y: bool = False,
) -> int | tuple[int, float]:
istart = slice_from_time(
self.vs.in_view,
start_t=t,
stop_t=t,
step=self.index_step(),
).start
if not return_y:
return istart
vs = self.vs
arr = vs.in_view
key = 'open' if self.is_ohlc else self.name
yref = arr[istart][key]
return istart, yref
def scalars_from_index(
self,
xref: float | None = None,