How to Share Data Across Public Actor Runs?
Is there a way to fetch data from a centralized source and update it when needed in public actor runs? What is the best way to manage this within Apify mechanisms without using external services (AWS DynamoDB, Firebase)?
Since runs executed by each user in public actors occur in an isolated environment, the default KV store obtained using Actor.get_value() and Actor.set_value() is unique to each user. The share feature for a KV store created with a specific name is only applicable for specific cases where a username, etc., is provided.
Is there a way to make this available to all public actor users?
3 Replies
Someone will reply to you shortly. In the meantime, this might help:
flat-fuchsia•3mo ago
Unfortunately, there is no such thing as a shared storage which could be accessed by multiple users, yet.
jolly-crimsonOP•3mo ago
Thanks for your answer Marco!