Skip to content

Commit a705a62

Browse files
authored
Update performance.md - grammar fix (bmoscon#670)
1 parent f2d0ff8 commit a705a62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Cryptofeed uses asyncio to optimize performance in a single threaded environment
77
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.
88

99

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`.
1111
* 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.
1212
* Enforcing a `max_depth` on a book increases processing time.
1313
* Using deltas on exchanges that do not support it (eg. Huobi) increases processing time.

0 commit comments

Comments
 (0)