Metadata-Version: 1.2
Name: singleflight
Version: 0.1.0
Summary: Coalesce multiple identical call into one, preventing thundering-herd/stampede to database/other backends
Home-page: http://github.com/aarondwi/singleflight
Author: Aaron Dwi Caesar
Author-email: aarondwico@gmail.com
Maintainer-email: aarondwico@gmail.com
License: MIT
Description: # singleflight
        
        Coalesce multiple identical call into one, preventing thundering-herd/stampede to database/other backends
        
        It is a python port of [golang's groupcache singleflight implementation](https://github.com/golang/groupcache/blob/master/singleflight/singleflight.go)
        
Keywords: cache,stampede,thundering-herd
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.5
