cancel
Showing results for 
Search instead for 
Did you mean: 

Updateable variable for multiple sessions?

IshaSingh
Level 4
Hi Community, Not sure if this is even a valid question or not - is there any feature where a variable can be updated between multiple same-process sessions? Probably thinking more from a multi-bot architecture perspective. -Environment variables are open to all but aren't updateable. -Session variables seem to be limited to one session - updating it in one session might not affect the same process's different session. Thanks, Isha    
3 REPLIES 3

Denis__Dennehy
Level 15
You could use a work queue item to store your central data or otherwise your own bespoke database table.  Use locking to ensure there is no concurrency issues.

Denis__Dennehy
Level 15
Actually - thinking again, you might be able to figure something out using an environment lock to store central data - store the data in the description field.

IshaSingh
Level 4
Oh, yes, didn't think about this at all! Thanks a lot Denis 🙂