fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
8 years ago
|
// Copyright 2014 Tyler Neely
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
//
|
||
7 years ago
|
extern crate rocksdb;
|
||
8 years ago
|
|
||
8 years ago
|
use rocksdb::{DB, Options};
|
||
9 years ago
|
use std::thread;
|
||
9 years ago
|
use std::sync::Arc;
|
||
|
|
||
9 years ago
|
const N: usize = 100_000;
|
||
9 years ago
|
|
||
|
#[test]
|
||
|
pub fn test_multithreaded() {
|
||
|
let path = "_rust_rocksdb_multithreadtest";
|
||
9 years ago
|
{
|
||
9 years ago
|
let db = DB::open_default(path).unwrap();
|
||
9 years ago
|
let db = Arc::new(db);
|
||
9 years ago
|
|
||
9 years ago
|
db.put(b"key", b"value1").unwrap();
|
||
9 years ago
|
|
||
9 years ago
|
let db1 = db.clone();
|
||
9 years ago
|
let j1 = thread::spawn(move || {
|
||
9 years ago
|
for _ in 1..N {
|
||
|
db1.put(b"key", b"value1").unwrap();
|
||
9 years ago
|
}
|
||
|
});
|
||
9 years ago
|
|
||
9 years ago
|
let db2 = db.clone();
|
||
9 years ago
|
let j2 = thread::spawn(move || {
|
||
9 years ago
|
for _ in 1..N {
|
||
|
db2.put(b"key", b"value2").unwrap();
|
||
9 years ago
|
}
|
||
|
});
|
||
9 years ago
|
|
||
9 years ago
|
let db3 = db.clone();
|
||
9 years ago
|
let j3 = thread::spawn(move || {
|
||
9 years ago
|
for _ in 1..N {
|
||
9 years ago
|
match db3.get(b"key") {
|
||
9 years ago
|
Ok(Some(v)) => {
|
||
9 years ago
|
if &v[..] != b"value1" && &v[..] != b"value2" {
|
||
|
assert!(false);
|
||
|
}
|
||
|
}
|
||
|
_ => {
|
||
9 years ago
|
assert!(false);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
9 years ago
|
});
|
||
9 years ago
|
|
||
9 years ago
|
j1.join().unwrap();
|
||
|
j2.join().unwrap();
|
||
|
j3.join().unwrap();
|
||
9 years ago
|
}
|
||
8 years ago
|
assert!(DB::destroy(&Options::default(), path).is_ok());
|
||
9 years ago
|
}
|