sigma / pcache

persistent caching for Emacs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README example does not work

matthew-piziak opened this issue · comments

(let ((repo (pcache-repository "plop")))
  (pcache-put repo 'foo 42) ; store value 42 with key 'foo
  (pcache-get repo 'foo) ; => 42
  )

Evaluating this results in Obsolete name arg "plop" to constructor pcache-repository.

Looks loks this is related to #5

pcache has been modernized wrt eieio, so it should work as advertized, and without warnings

@sigma Confirmed on my machine. Thank you!

Yay! Thank you!