]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2738] Write considerations
authorMichal 'vorner' Vaner <michal.vaner@nic.cz>
Wed, 3 Apr 2013 08:41:32 +0000 (10:41 +0200)
committerMichal 'vorner' Vaner <michal.vaner@nic.cz>
Wed, 3 Apr 2013 08:41:32 +0000 (10:41 +0200)
doc/design/ipc-high.txt

index b7c1efcc6b6952bff13da8530b904a6727a341a6..5bfeada3608f751b85a22a915c27fae50c5cce28 100644 (file)
@@ -176,3 +176,10 @@ messages or messages of several tens of megabytes is probably a bad
 idea. While there's no architectural limitation with regards of the
 number of transferred messages or their sizes, the code is not
 optimised and it would probably be very slow.
+
+We currently expect the system not to be at heavy load. Therefore, we
+expect the daemon to keep up with clients sending messages. The
+libraries write in blocking mode, which is no problem if the
+expectation is true, as the write buffers will generally be empty and
+the write wouldn't block, but if it turns out it is not the case, we
+might need to reconsider.