Why should I use SQL Relay with CGIs instead of using a native database API?

API CGI database native Relay sql
0
Posted

Why should I use SQL Relay with CGIs instead of using a native database API?

0

CGI’s have to log into and out of the database each time they run. This can take a long time. Native database API libraries are often very large. Since SQL Relay maintains persistent database connections, is fast to connect to and has a lightweight client API, using SQL Relay with CGI’s usually results in a faster applications that use less memory.

Related Questions