| 624 | } |
| 625 | |
| 626 | void redis_cluster::free_slots() |
| 627 | { |
| 628 | std::vector<redis_slot*>::iterator it; |
| 629 | for (it = slots_.begin(); it != slots_.end(); ++it) { |
| 630 | delete *it; |
| 631 | } |
| 632 | slots_.clear(); |
| 633 | } |
| 634 | |
| 635 | ////////////////////////////////////////////////////////////////////////// |
| 636 |