Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
0713119d
Commit
0713119d
authored
Aug 15, 2018
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
so apparently using inline schedulers is just a terrible idea
parent
ed3e6e14
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
SocketManager.cs
StackExchange.Redis/SocketManager.cs
+2
-2
No files found.
StackExchange.Redis/SocketManager.cs
View file @
0713119d
...
@@ -86,7 +86,7 @@ private SocketManager(string name, bool useHighPrioritySocketThreads, int worker
...
@@ -86,7 +86,7 @@ private SocketManager(string name, bool useHighPrioritySocketThreads, int worker
priority
:
useHighPrioritySocketThreads
?
ThreadPriority
.
AboveNormal
:
ThreadPriority
.
Normal
);
priority
:
useHighPrioritySocketThreads
?
ThreadPriority
.
AboveNormal
:
ThreadPriority
.
Normal
);
SendPipeOptions
=
new
PipeOptions
(
SendPipeOptions
=
new
PipeOptions
(
pool
:
defaultPipeOptions
.
Pool
,
pool
:
defaultPipeOptions
.
Pool
,
readerScheduler
:
_schedulerPool
,
// copying from the outbound Pipe to the socket should happen on the worker, to release the lock ASAP
readerScheduler
:
_schedulerPool
,
writerScheduler
:
_schedulerPool
,
writerScheduler
:
_schedulerPool
,
pauseWriterThreshold
:
defaultPipeOptions
.
PauseWriterThreshold
,
pauseWriterThreshold
:
defaultPipeOptions
.
PauseWriterThreshold
,
resumeWriterThreshold
:
defaultPipeOptions
.
ResumeWriterThreshold
,
resumeWriterThreshold
:
defaultPipeOptions
.
ResumeWriterThreshold
,
...
@@ -94,7 +94,7 @@ private SocketManager(string name, bool useHighPrioritySocketThreads, int worker
...
@@ -94,7 +94,7 @@ private SocketManager(string name, bool useHighPrioritySocketThreads, int worker
useSynchronizationContext
:
false
);
useSynchronizationContext
:
false
);
ReceivePipeOptions
=
new
PipeOptions
(
ReceivePipeOptions
=
new
PipeOptions
(
pool
:
defaultPipeOptions
.
Pool
,
pool
:
defaultPipeOptions
.
Pool
,
readerScheduler
:
PipeScheduler
.
Inline
,
// let the IO thread stomp all over the place on the receives
readerScheduler
:
_schedulerPool
,
writerScheduler
:
_schedulerPool
,
writerScheduler
:
_schedulerPool
,
pauseWriterThreshold
:
Receive_PauseWriterThreshold
,
pauseWriterThreshold
:
Receive_PauseWriterThreshold
,
resumeWriterThreshold
:
Receive_ResumeWriterThreshold
,
resumeWriterThreshold
:
Receive_ResumeWriterThreshold
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment