8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00
firebird-mirror/doc
2012-01-24 11:32:42 +00:00
..
license Corrected the license URLs. 2011-01-12 10:56:03 +00:00
sql.extensions Correct documentation for isc_info_creation_date 2006-02-09 07:48:14 +00:00
ambiguity.txt Little corrections. 2005-01-28 06:52:37 +00:00
cleaning-todo.txt Update some docos. 2005-04-03 06:59:41 +00:00
emacros-cross_ref.html Change document name 2003-07-08 22:29:39 +00:00
fb2-todo.txt A couple TODO items I forgot 2003-08-03 15:56:57 +00:00
Firebird_conf.txt no message 2003-02-28 20:41:05 +00:00
install_win32.txt More Win32 1.5 -> HEAD synchronisation. Updated documentation regarding gds32.dll and instclient.exe 2004-01-03 12:32:46 +00:00
ods11-index-structure.html ODS11 index structure description 2005-03-30 18:10:51 +00:00
README.build.mingw.html Remove the old build system. Make the new one as: make_icu.bat, make_boot.bat, make_all.bat. 2006-05-28 01:12:58 +00:00
README.build.msvc.html Remove the old build system. Make the new one as: make_icu.bat, make_boot.bat, make_all.bat. 2006-05-28 01:12:58 +00:00
README.coding.style An additional related to previous commit 2003-08-15 10:11:25 +00:00
README.garbage_collector Misc. 2006-03-28 04:04:23 +00:00
README.incompatibilities.txt More info 2005-12-28 06:06:24 +00:00
README.instsvc Updated docs. 2005-10-03 12:34:50 +00:00
README.intl Misc. 2005-07-21 05:44:11 +00:00
README.isql_enhancements.txt Explain other isql options. 2005-10-14 04:10:40 +00:00
README.makefiles Ironing POSIX build 2003-03-27 11:21:47 +00:00
README.NTSecurity Correct some files to refer to FB2 and security2.fdb 2005-03-05 01:44:38 +00:00
README.Optimizer.txt Misc. 2005-02-21 06:01:01 +00:00
README.sha1 Correct some files to refer to FB2 and security2.fdb 2005-03-05 01:44:38 +00:00
README.user Added troubleshooting guide and simple user intro 2002-11-11 14:48:44 +00:00
README.user.embedded Document files required for fbembed.dll 2006-03-06 01:00:02 +00:00
README.user.troubleshooting Added troubleshooting guide and simple user intro 2002-11-11 14:48:44 +00:00
README.Win32LibraryInstallation.txt More Win32 1.5 -> HEAD synchronisation. Updated documentation regarding gds32.dll and instclient.exe 2004-01-03 12:32:46 +00:00
README.xnet Added description of XNET. 2006-01-09 10:13:04 +00:00
WhatsNew Updated docs. 2012-01-24 11:32:42 +00:00

XNET - new local protocol implementation (win32)
------------------------------------------------

Firebird 2.0 has replaced the former (often referred to as IPC or IPServer)
implementation of the local transport protocol with a new one, named XNET.

It serves exactly the same goal - provide an efficient way to connect to the
local server (without a remote node name in the connection string) - but it's
implemented differently, in order to address the known issues with the old
protocol. Generally speaking, both implementations use shared memory for
inter-process communication, but XNET eliminates usage of window messages to
deliver attachment requests and it also implements another synchronization
logic.

Advantages of the XNET protocol over IPServer:

  - it works with Classic Server
  - it works for non-interactive services and terminal sessions
  - it doesn't lock up when using a few connections simultaneously

From the performance point of view, they should behave similarly, although
XNET is expected to be slightly faster.

As for disadvantages, there's only one - implementations are not compatible
with each other. It means that your fbclient.dll version should match the
version of the used server binaries (fbserver.exe or fb_inet_server.exe),
otherwise you won't be able to establish a local connection (a TCP localhost
loopback will do the trick, of course).