hi: I want to get a handle value data, which it is't in cache. please tell me how to do. thanks.
How many handle-value pair have you added? If you don't want it to fall out of the "data cache" just make it persistent with the rbc_mesh_persistence_set()
function. That is the easiest approach.
If you don't want to do that, you could manually add it the mesh again with the function rbc_mesh_value_enable(...)
, and add the value with rbc_mesh_value_set(...)
from a device that have the data you want to transmit.
How many handle-value pair have you added? If you don't want it to fall out of the "data cache" just make it persistent with the rbc_mesh_persistence_set()
function. That is the easiest approach.
If you don't want to do that, you could manually add it the mesh again with the function rbc_mesh_value_enable(...)
, and add the value with rbc_mesh_value_set(...)
from a device that have the data you want to transmit.