Showing headlines posted by dba477
« Previous ( 1 ... 24 25 26 27 28 29 )Oracle 10g installation on RHEL AS 3,Red Hat FC 2 and 1
Exporting environment variable LD_ASSUME_KERNEL=2.4.1 will affect performance of Oracle 10g instance on Red Hat Linux starting with version 9, i.e. version with Native Posix Threads Implementation.
Asynchronous I/O for Oracle9iR2(9.2.0.5) on Red Hat Fedora Core 2
Brief description of AIO implementation for Oracle9iR2(9.2.0.5) on Red Hat Fedora Core 2
Installing Oracle9i (9.2.0.5.0) on Red Hat Linux (Fedora Core 2)
The following article is a summary of the steps required to successfully install the Oracle9i (9.2.0.4.0) RDBMS software on Red Hat Linux Fedora Core 2. Also included in this article is a detailed overview for applying the Oracle9i (9.2.0.5.0) patchset.
Asynchronous I/O for Oracle9iR2(9.2.0.4) on Linux 2.6.8
First:
Download aio-stress.c from [1] and compile
gcc -Wall -laio -lpthread -o aio-stress aio-stress.c
Run aio-stress tests and make sure kernel does support AIO
Asynchronous I/O implementation for Red Hat Linux 9 .Relinking Oracle9iR2 to utilize AIO
Asynchronous I/O doesn't go along with Red Hat Linux 9 automatically. It's affecting performance of any database server working in Red Hat Linux environment , which is not RHEL Advanced Server or Entry Level Server
Multithreaded HTTP Server for Linux built up by the pool of threads multiplexing select() system call
Why “Advanced Linux Programming. New Riders Publishing, 2001” does fork to multiplex I/O building up an example of HTTP Server?
Multithreaded RPC Servers for Linux. Thread-safe code writing
This article is supposed to give a positive answer for the question 23.10 from [1] Chapter "RPC" Originally only two files are taken from [1]: rdict.x and rdict_srp.c. All business logic is implemented into rdict_client.c file,generated by "rpcgen -a -M rdict.x" command. So,files rdict.c and rdict_cif.c (see [1] , Chapter "RPC") are just taken out.