Reputation: 175
My phpErrorLog tells me that getKeys()
is deprecated.
[01-Oct-2020 16:44:02 Europe/Berlin] PHP Deprecated: Function Redis::getKeys() is deprecated in <pathToFile> on line xxx
I wonder what the alternative to getKeys is. Unfortunately I couldn't find anything there on google.
Upvotes: 1
Views: 329
Reputation: 2028
You should be able to use keys
to resolve the issue. The documentation notes that getKeys
is an alias for keys
and will be removed in future versions of phpredis.
Upvotes: 1