Hi,
We operate D3/Linux 10.2 in a VM that has 16Gb of RAM assigned to it.
As our database is currently only 6.1 Gb in total, is there anyway to pre or force load the entire database into RAM rather than just waiting on it to be loaded during the normal course of use?
Vincent
Hi Vincent,
You can perform a 'dummy' save executing this command:
save (fsxy
This will read all your data from disk including anything that is in files that have been dx'ed or dy'ed but it doesn't bother writing it anywhere.
You could set up a cron job that runs a script like this one:
#!/bin/bash
d3 -r -n pick0 -d "dm
dm
save (fsxy
exit
"
That assumes that the DM user and account do not have passwords set.
Cheers.