125k views
0 votes
How do you persist data with a VM queue?

1) Using a database
2) Using a file system
3) Using a message queue
4) Using a cache

User Toshiba
by
8.6k points

1 Answer

3 votes

Final Answer:

Persisting data with a VM queue is accomplished by 3) Using a message queue.

Step-by-step explanation:

When persisting data with a VM queue, employing a message queue is a preferred method. Message queues facilitate asynchronous communication between components, ensuring reliable and efficient data persistence. In this context, a message queue acts as an intermediary, allowing the virtual machine to send and receive messages seamlessly. This decouples the components, enhancing system resilience and scalability. Unlike databases that may introduce latency, message queues excel in managing communication between distributed systems, making them a suitable choice for persisting data with a VM queue.

Option: C is the answer.

User Rising Lee
by
8.6k points