Melchior
Melchior

Reputation: 175

Alternative to getKeys() of phpredis

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

Answers (1)

jasonandmonte
jasonandmonte

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.

Reference: https://github.com/phpredis/phpredis/blob/148bf373b7a0d276f6f6fd1ec1e6b9407fba6497/README.markdown#keys-getkeys

Upvotes: 1

Related Questions