

From Elevate Software page to take this report:
DBISAM Server is a database manager robust, scalable, high performance, which provides client / server to get the benefits of speed and reliability that today their data needs.
rate file server system
- When a terminal requests to the server, the requested information travels over the network to be processed locally. So if you have a 10mb database and run a search on it in which there were no data, 10mb of information contained in database travel the network cable.
- This massive transfer collisions each terminal generates a low return on the net.
- The server opens the database 1 time for each terminal. Eg. if your application opens 10 databases, so if you have 10 terminals, the server would open 100 files.
- In case of failure in any of the terminals could generate corrupt indexes.
- speed server response is not proportional to its processing capacity.
System client / server
- When a terminal requests to the server, the requested information is processed by the server and only the response information is traveling over the network. This means that if you have a 10mb database and run a search on it in which no data, only travel a few bytes to the terminal via the network cable.
- collisions are reduced by 90% or more, depending on the application.
- The server opens the database once but many are accessing the terminal.
- In case of failure in any of the terminals, the server closes the database properly and thus dramatically reduces the possibility of corruption of data or indexes. The server will not run requests incomplete.
- speed server response is proportional to its processing capacity.


0 comments:
Post a Comment