Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Method respond_to? returns false for any redis command #52

Open
jomei opened this issue Jan 26, 2017 · 1 comment
Open

Method respond_to? returns false for any redis command #52

jomei opened this issue Jan 26, 2017 · 1 comment

Comments

@jomei
Copy link

jomei commented Jan 26, 2017

redis = EM::Hiredis.connect
redis.set('some_key', 'some_value') # works great!
redis.respond_to?(:set) # => false :(

Looks like missing respond_to_missing? definition.

@mloughran
Copy link
Owner

Since the list of valid redis commands is not hard-coded (intentionally), this is not trivial to implement. It would be possible by requesting and storing a list of commands on connect, but I doubt complexity would be worthwhile.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants