8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00
firebird-mirror/doc
2006-01-09 12:45:39 +00:00
..
license small typo 2003-10-05 06:10:10 +00:00
sql.extensions More docs. 2006-01-09 12:45:39 +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 Misc 2005-12-28 07:11:48 +00:00
README.build.msvc.html Update 2003-07-16 19:40:47 +00:00
README.coding.style An additional related to previous commit 2003-08-15 10:11:25 +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.performance_monitoring Small corrections 2004-04-10 00:25:22 +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 Minor corrections 2005-03-14 18:08:23 +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 my changes 2005-12-21 10:15:35 +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).