Reputation: 1743
In some of my applications access to Redis seems to become a bottleneck. Currently there are two ways to make access more efficient. Pipelining and accessing Unix sockets instead of TCP.
But isn't there in even more efficient way to access it? More like a library, like when you are dealig with BDB or Toky Cabinet? Or maybe something else.
Upvotes: 1
Views: 498
Reputation: 16174
If redis is a bottleneck, you probably have something quite wrong with either your configuration or the type of query you are using. Some things to check:
Upvotes: 1