I'm trying to install memcached with older versions (ex: 1.4.5) but I'm not sure how to do it.
brew install memcached
installs the latest.
I also tried brew install memecached1.4.5
but it didn't work.
I'm trying to install memcached with older versions (ex: 1.4.5) but I'm not sure how to do it.
brew install memcached
installs the latest.
I also tried brew install memecached1.4.5
but it didn't work.
Usually, you can check if multiple versions are available and you can specify the version with @. e.g. brew install package@2.8
If is not available the version you want you can go to the repo, and check the history
Then you can find the commit you are looking for
Checkout that version and install:
Once you get the version installed, you can bring brew to its latest version with:
and, that's it!