mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-01 02:37:02 +08:00
Move IKeyValueContainer from flow to fdbserver
This commit is contained in:
parent
575b36bf53
commit
fff8e34b4d
@ -25,6 +25,7 @@ set(FDBSERVER_SRCS
|
||||
FDBExecHelper.actor.h
|
||||
GrvProxyServer.actor.cpp
|
||||
IDiskQueue.h
|
||||
IKeyValueContainer.h
|
||||
IKeyValueStore.h
|
||||
IPager.h
|
||||
IVersionedStore.h
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define IKEYVALUECONTAINER_H
|
||||
#pragma once
|
||||
|
||||
#include "IndexedSet.h"
|
||||
#include "flow/IndexedSet.h"
|
||||
|
||||
// Stored in the IndexedSets that hold the database.
|
||||
// Each KeyValueMapPair is 32 bytes, excluding arena memory.
|
@ -18,15 +18,15 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "fdbserver/IKeyValueStore.h"
|
||||
#include "fdbserver/IDiskQueue.h"
|
||||
#include "fdbserver/RadixTree.h"
|
||||
#include "flow/IKeyValueContainer.h"
|
||||
#include "flow/ActorCollection.h"
|
||||
#include "fdbclient/Notified.h"
|
||||
#include "fdbclient/SystemData.h"
|
||||
#include "flow/actorcompiler.h" // This must be the last #include.
|
||||
#include "fdbserver/DeltaTree.h"
|
||||
#include "fdbserver/IDiskQueue.h"
|
||||
#include "fdbserver/IKeyValueContainer.h"
|
||||
#include "fdbserver/IKeyValueStore.h"
|
||||
#include "fdbserver/RadixTree.h"
|
||||
#include "flow/ActorCollection.h"
|
||||
#include "flow/actorcompiler.h" // This must be the last #include.
|
||||
|
||||
#define OP_DISK_OVERHEAD (sizeof(OpHeader) + 1)
|
||||
|
||||
|
@ -31,8 +31,8 @@
|
||||
#include <map>
|
||||
#include <stdexcept>
|
||||
|
||||
#include "fdbserver/IKeyValueContainer.h"
|
||||
#include "flow/Arena.h"
|
||||
#include "flow/IKeyValueContainer.h"
|
||||
|
||||
// forward declaration
|
||||
const int LEAF_BYTE = -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user