~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to libmysqld/WHITEPAPER

  • Committer: sasha at sashanet
  • Date: 2001-04-12 01:09:00 UTC
  • mfrom: (669.1.1)
  • Revision ID: sp1r-sasha@mysql.sashanet.com-20010412010900-14282
Ugly merge of 3.23 changes into 4.0 - fix up needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
LIBRARY VERSION DESIGN (EMBEDDED SERVER)
 
2
 
 
3
 
 
4
- The library version of MySQL server is the client library that contains embedded server.
 
5
 
 
6
- This client DLL has name : libmysqlclient_e (.la)
 
7
 
 
8
- The client application that supposed to use MySQL LV need to be rebuilt against libmysqlclient_e.la. The rebuild process is necessary, because libmysqlclient_e is a LIBTOOL object, which has the different LIBS list compared to the original libmysqlclient.la.
 
9
 
 
10
- The client and the server code run in the same process and the same thread;
 
11
 
 
12
- The server code is invoked when client writes the command to the net, and when connection is established;
 
13
 
 
14
 
 
15
 
 
16