| Question:   | How do I create a server that runs in the foreground? | |
| Answer:   | Compile the server with the flag -DRPC_SVC_FG.
Here is a copy of a sample Makefile that does this:
| |
|   | ||
| Question:   | My code runs great until the number of records int the database gets large (more than 10). What's up with that? | |
| Answer:   | Make sure you are using TCP. UDP messages (a single UDP message is used to hold each request and response) are limited in size. | |