I have a polling loop that accesses devices, some of the devices are linked together and as such when one of the linked devices is polled its state must be copied to the other linked device.
I am trying to speed up the process of updating the second linked device. if device 4 is linked to device 5 it is fast but if device 5 is polled and a change found it has to wait till the polling loop is completed and started again.
My idea is to check as part of the poll if the device is linked so it can be updated immediately. The information on what devices are linked is stored in the database and making a call to the database for every poll will slow down the system dramatically I think so what I wanted to do was create a hash table of the table and check that instead.
so here are my questions
would this idea work ?
would the hash table be faster than the database checks ?
how often should I recreate the hash table, the program will run for weeks at a time ?
is this the best way of doing this. are there other ways to speed up a polling loop ?
