I am having a server where my java web application and database server reside.
Now the clients of my web app are of two types:
- ClientType1
- ClientType2
Both can access the database.
ClientType1 stores the data in the database.
ClientType2 retrieves the data from the database.
But the ClientType1 should start storing the data in the database when the ClientType2 says Start.
Similarily ClientType1 should stop storing the data in the database when the ClientType2 says Stop
===========================================================================
Q1. What are the solutions for this problem?
Here are the approaches I thought of:
Create a table in the database having one column that shows the status Start or Stop and this column's value should be set by ClientType2. ClientType1 will keep sending the query to the database for getting the status from this table and perform operations according to the status.
Apply ServerPush approach by which the server will keep a connection with the ClientType1 alive and will send the request to him whenever it receives the command (Start or Stop) from the ClientType2. Problem with this approach is that the no. of open sockets at the sever will increase as the increase in the no. of ClientType1