-
Notifications
You must be signed in to change notification settings - Fork 527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memcache Support #2096
Memcache Support #2096
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,11 @@ struct SpaceAllocServerOption { | |
uint64_t rpcTimeoutMs; | ||
}; | ||
|
||
struct KVClientManagerOpt { | ||
int setThreadPooln = 4; | ||
int getThreadPooln = 4; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. getThreadPooln where does this param use? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here is a reserved parameter, libmemcached, the current overall reading process is synchronous. Also waiting for pr #2080 |
||
}; | ||
|
||
struct DiskCacheOption { | ||
DiskCacheType diskCacheType; | ||
// cache disk dir | ||
|
@@ -182,6 +187,7 @@ struct FuseClientOption { | |
VolumeOption volumeOpt; | ||
LeaseOpt leaseOpt; | ||
RefreshDataOption refreshDataOption; | ||
KVClientManagerOpt kvClientManagerOpt; | ||
|
||
double attrTimeOut; | ||
double entryTimeOut; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wthat's the 'ci' option used for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.