Hi guys,
I am currently implement a "alike" Client-Server application (no socket) as follow:
+ The Server: run an PostgreSQL database server for other clients to access, it also store some data files created by clients.
+ The Client: access database on server. It may create data files during execution; all these files are stored on Server.
The purpose is I want to store all data file created by clients on Server.
The current implementation is:
+ The Server creates a "full-sharing" folder.
+ The Clients mount (using MAC OS X utility) this folder and write data to it.
The question is:
Can I rely on this model (that the Server shall keep all clients' data)? or Can you give me better ideas?
Many thanks
I am currently implement a "alike" Client-Server application (no socket) as follow:
+ The Server: run an PostgreSQL database server for other clients to access, it also store some data files created by clients.
+ The Client: access database on server. It may create data files during execution; all these files are stored on Server.
The purpose is I want to store all data file created by clients on Server.
The current implementation is:
+ The Server creates a "full-sharing" folder.
+ The Clients mount (using MAC OS X utility) this folder and write data to it.
The question is:
Can I rely on this model (that the Server shall keep all clients' data)? or Can you give me better ideas?
Many thanks