Scaling

Distributed Cache

Description

See 'Distributed Cache' in Data Patterns.

Where to use

  • Performance.

Real World Example

Redis.

Code Example

class DistributedCache:\n    def __init__(self):\n        pass\n\n    def execute(self):\n        print('Executing Distributed Cache')