mariadb/config/ac-macros
unknown e904d0e750 Porting of "buffered read" patch to 5.0 and post-review fixes.
The patch implements the idea suggested by Olaf van der Spek in 
thread "Client: many small reads?" (internals@lists.mysql.com).
Now small reads performed by the client library are buffered.
The buffering gives up to 2 times speedup when retrieving 
one-column tables.


BUILD/SETUP.sh:
  Remove --with-vio option which no longer exist.
BUILD/compile-pentium64-valgrind-max:
  Remove --with-vio option which no longer exist.
config/ac-macros/misc.m4:
  Removed --with-vio configure switch: we always use VIO. The switch,
   in fact, only saved us one pointer dereferencing per call in case we had
  only one transport type in VIO enabled.
config/ac-macros/openssl.m4:
  Removed HAVE_VIO.
include/config-win.h:
  Removed HAVE_VIO (not needed anymore)
  Added HAVE_VIO_READ_BUFF (define buffered client reads for Windows clients).
include/violite.h:
  Removed HAVE_VIO, as currently VIO is always in use.
  Added declaration for vio_read_buff and related members in struct VIO.
sql-common/client.c:
  Use flags to set up vio read buffering in mysql_real_connect.
sql/mysqld.cc:
  Use flags to disable vio read buffering when creating a server 
  connection.
vio/vio.c:
  Optionally set up vio read buffer when creating a new VIO structure.
vio/viosocket.c:
  Implementation of client-side buffered reads in VIO: the idea 
  is to buffer small reads in a client buffer to save amount of
  syscalls per retrieved result set. The implementation relies
  on the fact that read/recv will return as soon as there is
  some data in the kernel buffer, no matter how big the given
  user's buffer is. To be able to disable it in case recv/read don't
  have such semantics, the new calls are guarded
  with #define HAVE_VIO_READ_BUFF. Currently buffered reading is 
  switched on only for BSD sockets and named pipes, both on Windows
  and UNIXes.
2005-03-06 00:10:08 +03:00
..
alloca.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
character_sets.m4 character_sets.m4: 2005-02-01 11:50:43 +04:00
check_cpu.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
compiler_flag.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
ha_archive.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
ha_berkeley.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
ha_example.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
ha_federated.m4 First commit to mysql-5.0 tree to include MySQL Federated Storage Handler. This includes both the source and header files, test (results, test, require), and modifications to server and handler base files, and autoconf modifications to properly build federated handler. 2004-12-11 12:03:51 -08:00
ha_innodb.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
ha_isam.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
ha_ndbcluster.m4 moved START_AND_EXIT check so it can actually be used 2005-01-21 08:41:38 +01:00
ha_tina.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
large_file.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
misc.m4 Porting of "buffered read" patch to 5.0 and post-review fixes. 2005-03-06 00:10:08 +03:00
mysqlfs.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
openssl.m4 Porting of "buffered read" patch to 5.0 and post-review fixes. 2005-03-06 00:10:08 +03:00
readline.m4 Fixing problem with case insitive file systems. 2004-12-04 11:00:33 -08:00
zlib.m4 Fix bad 4.1->5.0 merge of Bug#6273 (mysql_config --libs when using bundled 2005-02-09 21:59:30 +03:00