The DPDK Membership Library provides functionality for creating set summaries that allow for fast membership testing of elements in large sets. It was introduced in DPDK 17.11. The library supports different data structures like Bloom filters and cuckoo filters that provide probabilistic membership queries while using less storage than storing the entire set. The Membership Library API allows for creating summaries, adding/deleting elements, and single or bulk lookup queries. An example use is to improve performance of Open vSwitch flow table lookups using the library to direct flows to specific sub-tables.