Jump to content

Is sync direction on a per field basis possible?


This topic is 2521 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies

I've got a solution that has about 280 GB of externally stored container files.  As such, I want container fields to sync only one direction (client->server) but everything else I'd like bi-directional.  Do I need to make two routines to accomplish this?  One bi-directional routine that utilizes layouts with all but container fields.  A second one-way routine that utilizes layouts with the containers?  Is there an easier way to accomplish this?  Thanks!

-JC

Link to comment
Share on other sites

No, MirrorSync does not support different sync directions on a per-field basis. I would recommend splitting the container data into a separate table, for two reasons:

1) You can set sync directions on a per-table basis, so this would solve your problem.

2) Because container data takes longer to sync than other data, you only want to sync it when a container field is actually modified. Combining the container data with non-container data in the same table will result in the container data being synced when any field in the same table, even non-container data, is modified. By isolating the container data into its own table, it will only be synced when the container data itself is modified.

Link to comment
Share on other sites

This topic is 2521 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.