Updateable variable for multiple sessions?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-04-18 04:31 PM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
27-04-18 02:25 PM
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.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
27-04-18 02:26 PM
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.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-05-18 08:42 PM
Oh, yes, didn't think about this at all! Thanks a lot Denis 🙂
