mhassan1 / redis-memory-server

Redis Server for testing. The server will allow you to connect your favorite client library to the Redis Server and run parallel integration tests isolated from each other.
MIT License
76 stars 11 forks source link

Error build Redis binary Apple Silicon #3

Closed leandroandrade closed 3 years ago

leandroandrade commented 3 years ago

For some reason, when download redis binary from https://download.redis.io/releases/redis-stable.tar.gz not working property.

Different behavior occur when the binaries are download from http://download.redis.io/redis-stable.tar.gz

Compare two binaries, they're different. I fixed this changing the location from binary will be downloaded when is stable version.

Has anyone seen this?

S.O: MacOS BigSur Version: 11.6 Make: 4.3

mhassan1 commented 3 years ago

Interesting... I did not notice the difference between those two. Check this out:

curl -I https://download.redis.io/releases/redis-stable.tar.gz
# last-modified: Sat, 27 Jun 2020 15:51:04 GMT

curl -I https://download.redis.io/redis-stable.tar.gz
# last-modified: Wed, 21 Jul 2021 18:52:01 GMT

Seems we should be using the more recent version. I will create a PR.