Hi,
Which is better, creating child processes through fork or using the Unix message queues???.... I'm developing under an Unix AIX system.... My program will be connected to different Bank Branches and process the transactions coming in...for now i'm using the fork function to create child process to handle each transaction coming in...but somebody told me that it is better to put the messages that came in to the message queue of Unix..and have another program read that queue and process the messages in it....
Thank in advance.
Which is better, creating child processes through fork or using the Unix message queues???.... I'm developing under an Unix AIX system.... My program will be connected to different Bank Branches and process the transactions coming in...for now i'm using the fork function to create child process to handle each transaction coming in...but somebody told me that it is better to put the messages that came in to the message queue of Unix..and have another program read that queue and process the messages in it....
Thank in advance.