We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
use common::interval::Interval;
use interval_map::IntervalMap;
use tikv_jemallocator::Jemalloc;
#[global_allocator]
static ALLOC: Jemalloc = Jemalloc;
fn main() {
divan::main();
}
#[divan::bench(args = [10, 100, 1000, 10000, 100000])]
fn equal_keys(n: usize) -> IntervalMap {
let mut map = IntervalMap::new();
map.insert(
1,
std::iter::repeat_n(Interval::prefix(vec![1; 64].into()), n),
)
.unwrap();
map
}