On Sun, Jul 29, 2012 at 3:13 AM, Prithvi Raj <
maverick...@gmail.com> wrote:
> Josiah,
> I don't plan to use keys * for anything other than debugging. However,
> I miss seeing table data like in SQL and I suppose Keys is the only
> command in redis that provides that. I don't know any other command if
> some one knows, it will be helpful.
> Yes INFO is working, dbsize is showing 2711. when I flushall and
> insert 5 keys then keys command works. When I populate using script
> about 2700 keys, the command just does not do anything. Yes I selected
> the right database using SELECT 0 as there is no other database.
>
> On the other hand, is there a way to name databases in redis, I don't
> think so, point me if I am wrong. Also does the new version build in
> cygwin ?
No, you can't name databases in Redis. Personally, I use named
configurations on my side of things, along with some
decorators/context managers in Python to provide my functions with the
right connections to the right resources.
The new version of Redis? I don't know. I've never tried. But I don't
believe that any patches were specifically made for cygwin support,
and I don't believe that Salvatore would accept them. Dusan's port
uses the mingw compiler, which may get you closer to what you want.
What language are you using, and what client are you using?
Are you running your command via your language bindings?
Have you tried running the command from redis-cli?
Have you tried making sure that the command makes it there by running
'monitor' in a redis-cli?
- Josiah