This message was deleted.
# hamilton-help
s
This message was deleted.
s
I think it should just work. The caching adapter extends from that. So you should just be able to use the caching one and by default it will return a dict on execute.
e
FWIW if you use the new builder the simple adapter is included by default! So you should be good, but as Stefan said it extends the simple one as well.
r
I find
with_adapters
in
Builder
, can I use this method?
e
Yep! You can just pass the CacheAdapter object to
with_adapters
🙌 1
r
Do you have any serializer for python object? I got confused by
@tag(cache='parquet')
. If I understand correctly, here should be specified a serializer name?
So as simple as
@tag(cache='pickle')
r
Ah! I find it! Source code is so clean so I take only a few seconds to find it. I ask it because I dont what
parquet
is. Once I realize it is a format name, I know where I should find the answer😃 Thanks!
😁 1
e
Ha, thanks 🙂 Yep, makes sense.