{"id":19839379,"url":"https://github.com/redislabs/redis-pipeline","last_synced_at":"2025-05-01T19:30:18.771Z","repository":{"id":18916760,"uuid":"22135648","full_name":"RedisLabs/redis-pipeline","owner":"RedisLabs","description":"Non blocking pipelined python client for redis and redis protocol parser.","archived":false,"fork":false,"pushed_at":"2014-09-04T08:04:05.000Z","size":172,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-06T17:03:05.882Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RedisLabs.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-23T07:09:08.000Z","updated_at":"2018-01-19T16:31:43.000Z","dependencies_parsed_at":"2022-09-09T23:40:36.196Z","dependency_job_id":null,"html_url":"https://github.com/RedisLabs/redis-pipeline","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedisLabs%2Fredis-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedisLabs%2Fredis-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedisLabs%2Fredis-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedisLabs%2Fredis-pipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RedisLabs","download_url":"https://codeload.github.com/RedisLabs/redis-pipeline/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251932513,"owners_count":21667157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T12:22:06.685Z","updated_at":"2025-05-01T19:30:18.539Z","avatar_url":"https://github.com/RedisLabs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"redispipeline\n=============\n\nNon blocking pipelined python client for redis.\n\nUsage example\n-------------\n\n.. code-block:: python\n\n    import redispipeline\n    r = redispipeline.RedisPipeline(pipeline_depth = 3)\n    r.set('x',1)\n    r.get('x')\n    r.set('y',2)\n    r.get('y') # This will block until we get the response from 'set x 1' because it's the 4th command and pipeline_depth is 3\n    print r.getResponse() # Print 'OK' (we know there's at least one response received because we blocked in previous command)\n    print r.getResponse() # Print '1' (or None if no response received yet)\n    r.sendCmd('PING') # I don't support all redis commands yet, but with sendCmd you can call whatever you want\n    print r.flushPipeline() # Wait for all pending responses to be received, will print \"['OK','2','PONG']\" or \"['1', 'OK','2','PONG']\" depending on previous line's result\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredislabs%2Fredis-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredislabs%2Fredis-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredislabs%2Fredis-pipeline/lists"}