Yeah, sure. MySQL has replication. one-way replication. But if you are going to mirror, you need two-way replication. Which is hard to get it right. Believe me, I've done so, and it took us 3 months to build it, with a $300,000 price tag. (One of the most interesting projects I've ever done). Not that it would even be remotely possible to use the same technique with MySQL.

You could set up a contruct were the database is mirrored, and you use the mirror as a query database, but still use the master to perform updates on. But then you get into a master-slave setup, with an assymmetric relationship. And you'd need synchronic writes to the replicated database - or else you get strange effects (you reply to an article, but then it disappears for a while - until the data has replicated). Synchronized writes are slooooooooooow.

Abigail


In reply to Re: Possible perlmonks mirrors? by Abigail-II
in thread Possible perlmonks mirrors? by Jaap

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.