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: docs/performance.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Cryptofeed uses asyncio to optimize performance in a single threaded environment
7
7
In general, these performance considerations only apply when dealing with book data. Other data channels are low volume (relatively) and are unlikely to suffer from latency/performance issues.
8
8
9
9
10
-
* Book channels are typically very message intensive. If subscribing to book data with many symbols consider breaking those up into multiple calls to `add_feed`. Each call to `add_Feed` creates at least one new asyncio `task`.
10
+
* Book channels are typically very message intensive. If subscribing to book data with many symbols, consider breaking those up into multiple calls to `add_feed`. Each call to `add_Feed` creates at least one new asyncio `task`.
11
11
* There is a limit to how much data can be processed on a single process. If your needs are great (book data for 100s of symbols) you will need to multiprocess.
12
12
* Enforcing a `max_depth` on a book increases processing time.
13
13
* Using deltas on exchanges that do not support it (eg. Huobi) increases processing time.
0 commit comments