C
Claire
I'm writing an internal mail system module for an application.
The mails are stored on a sql database that may be on a LAN or WAN.
The gui has similar functionality to most email systems where you'd click on
a message header and the message body appears in a read only text box.
To reduce network traffic I plan to download the message body from the
database when a user clicks on the message header and cache it locally until
the form is closed.
Is this the best way to do this? If so, should messages be cached to
temporary files or held in memory or is there a better method?
thank you
The mails are stored on a sql database that may be on a LAN or WAN.
The gui has similar functionality to most email systems where you'd click on
a message header and the message body appears in a read only text box.
To reduce network traffic I plan to download the message body from the
database when a user clicks on the message header and cache it locally until
the form is closed.
Is this the best way to do this? If so, should messages be cached to
temporary files or held in memory or is there a better method?
thank you