I have a master-slave setup that essentially feeds 2 different systems. One system inserts gobs of data, while the other reads it back out. I have quite a few indexes set up for the reads, but of course indexes slow the writes down.
Using Postgres's automatic master-slave replication strategies, is there a way to just replicate the raw data but not have the indexes present on the master?
I saw an answer to this, but it was for MySQL, and I'm using Postgres (Can you index tables differently on Master and Slave (MySQL)).
Thanks in advance.