iriscouch / follow

Very stable, very reliable, NodeJS CouchDB _changes follower
Apache License 2.0
393 stars 82 forks source link

How many DBs can follow? #89

Open masterk63 opened 7 years ago

masterk63 commented 7 years ago

If I have many dynamic to follow DBs (one per user), Any idea how many can follow? 10?100?10000?

jcrugzz commented 7 years ago

depends on how many http connections your node process can handle and what async actions are then triggered from it. It also depends on how active these feeds are. From my experience running in production, I would definitely follow less than 100 in a single process but I would do some experimentation.

masterk63 commented 7 years ago

Oh thank you so much, I think the point is how much async is the process, so if I check the changes every two hours rather than all the time, doesn't matter how many DBs are.