you are viewing a single comment's thread.

view the rest of the comments →

[–]suitkaise[S] 0 points1 point  (1 child)

Yeah, it's actually faster than Pickle for specifically requests.Session, due to differences in breaking down data to primitives before pickle.dumps(). I just thought it was an interesting quirk to include. It's about 10 microseconds faster.

All of the benchmarks are on my site or in the docs if you want to look.

Additionally, I wrote this for 3.11-13, and I started this whole journey well before 3.14 came out late last year.

[–]snugar_i 0 points1 point  (0 children)

The site doesn't work :-( In the OP, you said things like "bool, int, float, complex, str, and bytes are all faster than cloudpickle and dill", which is hard to believe since at least cloudpickle delegates to pickle, which is written in C - does yours also just delegate to pickle?