You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/quill/core/FrontendOptions.h
+11-7
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,8 @@ struct FrontendOptions
17
17
{
18
18
/**
19
19
* Each frontend thread has its own queue, which can be configured with various options:
20
-
* - UnboundedBlocking: Starts with initial_queue_capacity and reallocates up to 2GB, then blocks.
21
-
* - UnboundedDropping: Starts with initial_queue_capacity and reallocates up to 2GB, then drops log messages.
22
-
* - UnboundedUnlimited: Starts with initial_queue_capacity and reallocates without limit, subsequent queues are reallocated as needed. Never blocks or drops.
20
+
* - UnboundedBlocking: Starts with initial_queue_capacity and reallocates up to unbounded_queue_max_capacity, then blocks.
21
+
* - UnboundedDropping: Starts with initial_queue_capacity and reallocates up to unbounded_queue_max_capacity, then drops log messages.
23
22
* - BoundedBlocking: Starts with initial_queue_capacity and never reallocates; blocks when the limit is reached.
24
23
* - BoundedDropping: Starts with initial_queue_capacity and never reallocates; drops log messages when the limit is reached.
Copy file name to clipboardExpand all lines: include/quill/core/UnboundedSPSCQueue.h
+26-38
Original file line number
Diff line number
Diff line change
@@ -107,9 +107,9 @@ class UnboundedSPSCQueue
107
107
*/
108
108
#if defined(_MSC_VER)
109
109
// MSVC doesn't like this as template <QueueType queue_type> when called from Logger, while it compiles on MSVC there will be false positives from clang-tidy
0 commit comments