I have in my hands a project to integrate a company's devices into a web platform. This video shows a general idea of the project.
These are various machines, which send information (status, temperature, speed, ..., etc) to a central server (a MySQL database). And from another direction, these machines receive instructions from several users to: stop a process in progress, decrease or increase speed, decrease temperature, ... etc.
My job is to integrate this architecture on the web, in real time, as in the video I showed above.
Receiving real-time information from the machine and displaying it in the browser is done. I basically used MySql + SSE + PHP + Bootstrap. I can also interact tom tablets and smart phones. This is already done.
My question lies in the Browser direction == > Devices.
In the current architecture this process passes through REDIS. Since I've never worked with this technology I've done a search and found this site that shows some applications. I'm wanting to leave the whole process using Mysql and abandon the Redis. For this I need to understand the importance of this technology in IoT projects, to know if Mysql will respond to the needs.
As far as I understand, this is a very sweaty NoSql database for caching.
But I can not see where Redis is important in IoT development.
Someone who has worked with these two technologies IoT and Redis, could you explain?