Is there any relationship between the three cache files (internal memory cache, MS cache, SD cache)? That is, if I e.g. modify one, should I update the others to keep in sync? Specifically, I am interested in record IDs: Suppose that I have:
- Internal memory cache:
Code:
...
<xs1:text ... id="5" ... />
...
- SD cache:
Code:
...
<text ... id="6" ... />
...
Now I add another document to the internal memory. Do I need to concern myself with IDs in the SD cache or is it enough to make sure that the new ID is unique within the internal memory cache? In other words, if I modify the internal memory cache to:
Code:
...
<xs1:text ... id="5" ... />
<xs1:text ... id="6" ... />
...
Will it have any adverse effects on the same-IDed record in the SD cache? Or vice versa.