redis plugin: Use a linked list rather than an AVL tree.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 17 Aug 2010 13:20:59 +0000 (15:20 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 17 Aug 2010 13:21:11 +0000 (15:21 +0200)
commite8d81d7d47826dbb0e0549ab1c1d5a50add51037
treebf43926aa80e155146aad10334edc1ea94574b10
parentfe3dc1b1d500cf1593009ef70487c3eb29cec57f
redis plugin: Use a linked list rather than an AVL tree.

Since the main purpose of the data structure is to iterate over it, using
an AVL tree here is less efficient than a linked list. Also, it's easier
to read.
src/redis.c