Beginning with DHCP 4.3, ISC DHCP now supports an option to disable the use of fsync().
fsync() is a file-control primitive that instructs the operating system to synchronize pending writes to permanent storage (generally causing modified memory buffers that have not yet been written to be written to disk or similar storage).
Because synchronous filesystem writes are one of the major performance constraints on dhcpd on most systems, eliminating fsync can have the effect of increasing the number of lease operations per second that can be handled by the server. However, as documented in the dhcpd.conf man page and the README file for ISC DHCP, Internet Systems Consortium does not recommend the use of "dont-use-fsync yes; " in a server configuration because the relaxation of the requirement for synchronous write substantially increases the chance that the leases database will not be properly updated after lease operations are performed by the server. If the server is interrupted when pending lease information has not yet been written to storage, the leases file may be left in an inconsistent or erroneous state, which may cause significant problems on restart.
The use of synchronous write operations remains the default behavior in DHCP 4.3 (equivalent to "don't use-fsync no; ") and is the safest practice for server operation.
DHCP server operators looking for options to increase performance are advised to first try other mechanisms -- failover load balancing, delayed ack, etc -- supported by ISC DHCP.