Oracle Configuration
|
|
Bitrix Site Manager has been tested on Oracle 9i and 10g and showed perfect results. Using the Oracle database can dramatically improve the system reliability and performance at peak loads. The architecture developed by the Oracle engineers enables administrators to utilize the server power to the full extent achieving perfect interactivity of web applications. With Oracle database, administrators can build web projects of virtually any scale. Our recommendations on configuring Oracle systems are in general the same specified in the Oracle documentation: reduce read/write, sort and update disk operations. Pay attention to fine-tuning memory management variables. We recommend using 60% to 80% of system memory for caching:
For Oracle 10 and later, use Automatic Shared Memory Management:
In order to save more SGA (shared_pool) space and reduce processor recourses spent for the parsing of SQL queries that differ only in the parameter values, specify cursor_sharing = FORCE or cursor_sharing = SIMILAR. Disable histograms in statistics table columns: begin dbms_stats.set_param('METHOD_OPT', 'FOR ALL COLUMNS SIZE 1' ); end;. If Oracle and a webs server are installed on the same machine, you can take advantage of using the IPC protocol (PROTOCOL = IPC) and (KEY = EXTPROC) for database connection to avoid communication via the IP stack. For the two-tier solutions (Front-end and Back-end servers) that define the MaxClients parameter, you can safely use persistent database connections by adding the following instruction:
to /bitrix/php_interface/dbconn.php.
Pass self-check test MySQL Configuration | Mô tả khóa học | Conclusion |