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?