Files
parallel-hashmap/examples/dump_load.cc
T

149 lines
3.6 KiB
C++
Raw Normal View History

2019-08-13 22:42:37 +08:00
#include <iostream>
#include <string>
#include <parallel_hashmap/phmap.h>
using phmap::flat_hash_map;
using phmap::flat_hash_set;
void load_dump_string_string() {
flat_hash_map<std::string, std::string> mp1;
// Add a new entry
mp1["key-1"] = "value-1";
mp1["key-2"] = "value-2";
// Iterate and print keys and values
for (const auto& n : mp1)
std::cout << n.first << "'s value is: " << n.second << "\n";
mp1.dump("./dump.data");
flat_hash_map<std::string, std::string> mp2;
mp2.load("./dump.data");
// Iterate and print keys and values g|++
for (const auto& n : mp2)
std::cout << n.first << "'s value is: " << n.second << "\n";
2019-08-14 23:28:33 +08:00
std::remove("./dump.data");
2019-08-13 22:42:37 +08:00
}
void load_dump_uint64_uint32() {
flat_hash_map<uint64_t, uint32_t> mp1;
// Add a new entry
mp1[100] = 99;
mp1[300] = 299;
// Iterate and print keys and values
for (const auto& n : mp1)
std::cout << n.first << "'s value is: " << n.second << "\n";
mp1.dump("./dump.data");
flat_hash_map<uint64_t, uint32_t> mp2;
mp2.load("./dump.data");
// Iterate and print keys and values g|++
for (const auto& n : mp2)
std::cout << n.first << "'s value is: " << n.second << "\n";
2019-08-14 23:28:33 +08:00
std::remove("./dump.data");
2019-08-13 22:42:37 +08:00
}
void load_dump_string_uint32() {
flat_hash_map<std::string, uint32_t> mp1;
// Add a new entry
mp1["key-1"] = 99;
mp1["key-2"] = 299;
// Iterate and print keys and values
for (const auto& n : mp1)
std::cout << n.first << "'s value is: " << n.second << "\n";
mp1.dump("./dump.data");
flat_hash_map<std::string, uint32_t> mp2;
mp2.load("./dump.data");
// Iterate and print keys and values g|++
for (const auto& n : mp2)
std::cout << n.first << "'s value is: " << n.second << "\n";
2019-08-14 23:28:33 +08:00
std::remove("./dump.data");
2019-08-13 22:42:37 +08:00
}
void load_dump_uint32_string() {
flat_hash_map<uint32_t, std::string> mp1;
// Add a new entry
mp1[100] = "hello";
mp1[299] = "world";
// Iterate and print keys and values
for (const auto& n : mp1)
std::cout << n.first << "'s value is: " << n.second << "\n";
mp1.dump("./dump.data");
flat_hash_map<uint32_t, std::string> mp2;
mp2.load("./dump.data");
// Iterate and print keys and values g|++
for (const auto& n : mp2)
std::cout << n.first << "'s value is: " << n.second << "\n";
2019-08-14 23:28:33 +08:00
std::remove("./dump.data");
2019-08-13 22:42:37 +08:00
}
void load_dump_string() {
flat_hash_set<std::string> st1;
// Add a new entry
st1.insert("hello");
st1.insert("world");
// Iterate and print
for (const auto& n : st1)
std::cout << "value: " << n << "\n";
st1.dump("./dump.data");
flat_hash_set<std::string> st2;
st2.load("./dump.data");
// Iterate and print keys and values g|++
for (const auto& n : st2)
std::cout << "value: " << n << "\n";
2019-08-14 23:28:33 +08:00
std::remove("./dump.data");
2019-08-13 22:42:37 +08:00
}
void load_dump_uint64() {
flat_hash_set<uint64_t> st1;
// Add a new entry
st1.insert(878);
st1.insert(1424);
// Iterate and print
for (const auto& n : st1)
std::cout << "value: " << n << "\n";
st1.dump("./dump.data");
flat_hash_set<uint64_t> st2;
st2.load("./dump.data");
// Iterate and print keys and values g|++
for (const auto& n : st2)
std::cout << "value: " << n << "\n";
2019-08-14 23:28:33 +08:00
std::remove("./dump.data");
2019-08-13 22:42:37 +08:00
}
int main()
{
load_dump_string_string();
load_dump_uint64_uint32();
load_dump_string_uint32();
load_dump_uint32_string();
load_dump_string();
load_dump_uint64();
return 0;
}