piker/piker
Gud Boi 6647651229 Actually do per-actor-caching in `open_symcache()`
Use `dict.get()` instead of `try/except KeyError` for the actor-level
`_caches` lookup; actually store the loaded `symcache` back into
`_caches[provider]` so subsequent opens retrieve any in-mem cache
instance.

Deats,
- swap `_caches[provider]` `KeyError` catch to
  `.get()` with `if symcache:` guard.
- assign result back to `_caches[provider]` before
  yielding so the cache is persistent across calls.
- rename local `cache` -> `symcache` throughout.
- add `loglevel` param and init `get_console_log()`
  at function scope.

Also,
- improve `log.info()` msgs with `{provider!r}`,
  load-latency, and cachefile path details.
- demote "no cache exists" from `.warning()` to
  `.info()`.
- track `from_msg` to distinguish "NEW request to
  provider" vs loaded-from-file in final log line.
- reformat `or` conditions to multiline style.
- move `import time` to module-level.

(this commit msg was generated in some part by [`claude-code`][claude-code-gh])
[claude-code-gh]: https://github.com/anthropics/claude-code
2026-03-12 16:27:11 -04:00
..
accounting Enable console logging in `.accounting` on import 2026-02-23 12:22:48 -05:00
brokers Swap `open_channel_from()` yield-pair order 2026-03-12 13:53:21 -04:00
clearing Enable console via `.clearing._ems.open_brokerd_dialog()` 2026-02-23 12:22:48 -05:00
cli Better doc-strings n styling in `piker.cli` eps 2026-02-23 12:22:48 -05:00
data Actually do per-actor-caching in `open_symcache()` 2026-03-12 16:27:11 -04:00
fsp Use `md5` hashed shm keys for macOS compat 2026-03-11 10:56:22 -04:00
service Use `name=__name__` for logs throughout `.service` 2026-02-23 12:22:48 -05:00
storage Replace assert with warn for no-gaps in `.storage.cli` 2026-02-22 22:08:35 -05:00
testing Pass a config `tmp_dir: Path` to the runtime when testing 2023-03-09 15:37:43 -05:00
toolz Delegate `.toolz.open_crash_handler()` to `tractor.devx` 2024-01-16 10:26:38 -05:00
tsp Handle valid null frames and 0-bar cases in backfill 2026-03-11 15:51:41 -04:00
ui Improve styling and logging for UI font-size zoom 2026-03-11 19:07:38 -04:00
watchlists Add license headers to pertinent files 2020-11-06 12:23:14 -05:00
__init__.py Start `piker.service` sub-package 2023-03-09 15:37:42 -05:00
_cacheables.py Move `._cacheables.open_cached_client()` into `.brokers` pkg mod 2023-06-27 13:41:47 -04:00
calc.py Lul, adhere to returning `str`s in `humanize()` 2022-01-25 07:57:01 -05:00
config.py Use `platformdirs` for `.config.get_app_dir()` 2026-03-11 15:51:41 -04:00
log.py Auto-enable `tractor` logging when runtime active 2026-02-23 12:22:48 -05:00
types.py Point `.types.Struct` to `tractor.msg.pretty_struct` 2026-02-22 16:07:53 -05:00