Metadata-Version: 1.0
Name: vulcan
Version: 0.1.1
Summary: The highly logical way to populate Redis with random data
Home-page: http://github.com/tnm/vulcan
Author: Ted Nyman
Author-email: tnm800@gmail.com
License: MIT
Description: 
        
        Quick Setup and Usage
        ---------------------
        
        You'll need redis-py: http://github.com/andymccurdy/redis-py
        
        Say you want to SET ten thousand keys, with randomly generated values.
        
        Here's all you need to do:
        
        First, create a Vulcan object like so:
        
        from vulcan import Vulcan
        
        s = Vulcan(10000)
        
        The default is to populate with strings, but to be explicit you could do:
        
        s = Vulcan(10000, 'strings')
        
        For lists, sets, sorted sets, or hashes:
        
        lists = Vulcan(10000, 'lists')
        
        sets = Vulcan(10000, 'sets')
        
        zsets = Vulcan(10000, 'zsets')
        
        hashes = Vulcan(10000, 'hashes')
        
        Now just:
        
        s.populate()
        
        That will clear out database 5 (or 6 or 7 or 8 or 9, respectively), and populate it with your random data. You're all set.
        
        The keys are given random integer key names, and the values and scores are also given random integers. Next version, I'll likely add in some other options for random values (probably Star Trek-based).
        
        That's all there is to it. You are now bursting with Redis data. Live long, and prosper. \V/_
        
        
        
Keywords: Redis,random,data,data structures
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
