TODO 935 B

123456789101112131415161718192021
  1. * Authentication and database selection should be handled transparently by
  2. the client.
  3. * The current behaviour of sending, by default, unshardable commands to the
  4. first registered connection of a ConnectionCluster instance needs to be
  5. verified.
  6. * The included test suite covers almost all the Redis server commands, but a
  7. full battery of tests targeting specific functions of this library is still
  8. missing.
  9. * Support for pipelining commands on one or more connections works, but it
  10. could be optimized for better performances with a cache of computed commands
  11. hashes, but the memory impact still needs to be evalued.
  12. * Add the possibility of flushing the command buffer from inside of a pipeline.
  13. * Switching to/from instances of Connection and ConnectionCluster should be
  14. transparent to the user. Using a ConnectionCluster instance when there is
  15. only one active connection has an unnecessary overhead.