views:

96

answers:

2

I have a database that I need to provide redundancy for.

It is Codebase, but using a typical SQL database uses too much CPU, and having the DB offsite causes too much latency in my process.

I need a viable solution for providing data redundancy with an offsite location for my time criticla process.

+1  A: 

Maybe a stupid answer, but have you thought about a mirror?

Gamecat
+1  A: 

If you have a mostly read scenario you should look into memcached, it might solve part of your problem.

Robert Gould