-
Notifications
You must be signed in to change notification settings - Fork 53
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
change redis.database default to 0? #19
Comments
@nolta Interesting. The docker container seems to be fine with this. During unit tests I actually build a docker container and interact with it. This is the docker-compose.yml it is using for testing. Is this still an issue? |
@jcustenborder I can confirm that this is still an issue. When my team first tried the connector out, it took a bit to realize that there was a mismatch between the default database setting for the connector (
Here's the output of redis cli: note that initially when GET is is run, I get It's not a huge deal, and those with more redis experience would probably be able to spot this mismatch quickly, but changing the default to 0 could make the initial "trying-it-out" more straightforward and successful out of the box for people shopping for solutions. I'll test locally with the repo and see if tests fail as a result of a change to the default. |
I confirmed that changing the default value for Something like:
|
I'm wondering why
redis.database
defaults to1
instead of0
. When you startredis-cli
without options, the default database is0
.The text was updated successfully, but these errors were encountered: