I'm processing transactions for many users, from the console/command. For each user/transaction processed, I need the user_id value accessible in a package I've created.
What would be the best way to share the user_id value to the package? Session variable? Cache helper? A global variable?
Thanks