LearningTech

Scaling

Distributed Cache

Description

See 'Distributed Cache' in Data Patterns.

Where to use

  • Performance.

Real World Example

Redis.

Code Example

class DistributedCache:
    def __init__(self):
        pass

    def execute(self):
        print('Executing Distributed Cache')