-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstring.cpp
31 lines (26 loc) · 931 Bytes
/
string.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2019 Lawrence Livermore National Security, LLC and other Metall
// Project Developers. See the top-level COPYRIGHT file for details.
//
// SPDX-License-Identifier: (Apache-2.0 OR MIT)
#include <iostream>
#include <boost/container/string.hpp>
#include <metall/metall.hpp>
#include <string>
// String with Metall
using persistent_string =
boost::container::basic_string<char, std::char_traits<char>,
metall::manager::allocator_type<char>>;
int main() {
{
metall::manager manager(metall::create_only, "/tmp/datastore");
auto pstr = manager.construct<persistent_string>("mystring")(
"Hello, World!", manager.get_allocator<>());
std::cout << *pstr << std::endl;
}
{
metall::manager manager(metall::open_only, "/tmp/datastore");
auto pstr = manager.find<persistent_string>("mystring").first;
std::cout << *pstr << std::endl;
}
return 0;
}