summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Update README to make pip install copy-pastable on zsh (#2584)Igor Malinovskiy2023-02-191-1/+1
|
* Including startup instructions via redis-stack docker (#2535)Chayim2023-01-041-0/+6
|
* Removing Deprecated LGTM (#2473)Chayim2022-12-041-1/+0
|
* Link to the latest pre-release (#2440)Chayim2022-10-301-0/+1
|
* Add missing dots in README.md (#2435)Andrei Andrukhovich2022-10-301-4/+4
|
* Support Hiredis >= 1.x only (remove `packaging` dependency) (#2385)Aarni Koskela2022-09-281-1/+2
| | | | | | | * Only set HIREDIS_AVAILABLE if Hiredis is not 0.x * Remove compatibility code for old Hiredis versions * Move packaging dependency to dev only
* Fix/readme links (#2368)Graeme Clements2022-09-071-1/+1
| | | | | * Updated broken README.md links * Updated CHANGES
* Fix typo work -> word (#2341)Nathaniel Blakely2022-08-211-1/+1
| | | Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
* Fix typo (double "of" word) (#2314)Andrei Andrukhovich2022-07-311-1/+1
|
* cleaning up the readme and moving docs into readthedocs (#2291)Chayim2022-07-271-1109/+35
| | | | | * cleaning up the readme and moving docs into readthedocs * examples at the end as per pr comments
* Adding link to the OM client (#2262)Chayim2022-07-051-116/+11
| | | | | * docs cleanup, adding om link * adding link to om client
* Changed dynamic_startup_nodes default value to 'True' to prevent breaking ↵Bar Shaul2022-06-271-2/+2
| | | | backward compatibility (#2251)
* Added dynamic_startup_nodes configuration to RedisCluster. (#2244)Bar Shaul2022-06-231-0/+50
| | | | | | | | | * Added dynamic_startup_nodes configuration to RedisCluster. By default, uses only the initial passed startup nodes to refresh the cluster topology. If set to true, sets the startup nodes to all of the discovered nodes. * Added RedisCluster specific options to the README file and updated CHANGES * Fixed timeout_error_topology_refresh test Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
* Improve Readability (#2206)Ryan Russell2022-06-011-2/+2
| | | Signed-off-by: Ryan Russell <git@ryanrussell.org>
* Add cluster support for scripting (#1937)Jake Barnwell2022-02-221-6/+28
| | | | | | | | | | | * Add cluster support for scripting * Fall back to connection_pool.get_encoder if necessary * Add documentation for cluster-based scripting * Add test for flush response Co-authored-by: dvora-h <dvora.heller@redis.com>
* Add Async Support (#1899)Andrew Chen Wang2022-02-221-1/+6
| | | | Co-authored-by: Chayim I. Kirshen <c@kirshen.com> Co-authored-by: dvora-h <dvora.heller@redis.com>
* Fix typo in readme (#1936)Jose Toro2022-02-151-1/+1
|
* README code snippets formatted to highlight properly (#1888)Soumendra kumar sahoo2022-01-251-84/+85
|
* direct link to readthedocs (#1885)Chayim2022-01-181-1/+3
|
* Fixing the license link in the readme (#1778)Chayim2021-12-081-52/+52
|
* Migrated targeted nodes to kwargs in Cluster Mode (#1762)Bar Shaul2021-12-011-2/+2
|
* Splitting documentation for read the docs (#1743)Chayim2021-11-251-1/+1
|
* Adding RedisCluster client to support Redis Cluster Mode (#1660)Bar Shaul2021-11-251-2/+266
| | | | Co-authored-by: Chayim <chayim@users.noreply.github.com> Co-authored-by: Anas <anas.el.amraoui@live.com>
* Export Sentinel, and SSL like other classes (#1671)Terence Honles2021-11-081-1/+13
|
* starting to clean the docs (#1657)Chayim2021-10-281-168/+160
|
* Update badges in README.md (#1654)Guy Korland2021-10-281-3/+4
|
* re-enabling codecov as part of CI process (#1646)Chayim2021-10-261-1/+2
|
* Convert README & CONTRIBUTING from rst to md (#1633)David2021-10-261-0/+962
|
* keep historyandy2013-04-281-353/+0
|
* Update the README with accurate pipeline transaction informationTim Douglas2013-04-161-3/+3
|
* Added note that redis-py requires a running Redis server to connect to along ↵Dave2013-04-151-0/+3
| | | | with a link to installation instructions.
* Fix a typo in READMEbitterb2013-01-211-1/+1
| | | This is just a minor fix. Please see the diff.
* Update README.mdsaidimu apale2012-12-031-1/+1
|
* Update README.mdsaidimu apale2012-12-031-1/+1
|
* LUA examples in READMEandy2012-10-071-3/+64
|
* badge up the READMEandy2012-08-091-0/+2
|
* Correct typos in README.mdZak Johnson2011-11-071-3/+3
|
* Note about thread safety and piplines regarding #198andy2011-10-101-1/+1
|
* The pipeline object comes off of the existing Redis instance, not the redis ↵nicholasknight2011-08-151-1/+1
| | | | module.
* added a note about SETEX in the Redis classandy2011-08-041-0/+1
|
* Fix typo in READMEAdam Vandenberg2011-07-291-1/+1
|
* Fixed "Connetion" typoWoLpH2011-07-281-1/+1
|
* Renamed the base client class to StrictRedis, replacing ZADD and LREM in ↵andy2011-07-261-30/+35
| | | | favor of their official argument order. The Redis class is now a subclass of StrictRedis, implementing the legacy redis-py implementations of ZADD and LREM. Docs have been updated to suggesting the use of StrictRedis.
* docsandy2011-07-171-1/+1
|
* Added a `transaction` convenience method that eliminates boilerplate whenandy2011-07-171-0/+15
| | | | using pipelines while WATCHing variables.
* Pipelines can now be used as Context Managers. Thanks David Wolever. Fixes #160andy2011-07-171-5/+6
|
* Whoops, forgot `break`.David Wolever2011-07-131-0/+1
|
* Docs for proposed Pipeline context manager.David Wolever2011-07-131-22/+34
|
* Fixing example to include `finally: pipe.reset()`David Wolever2011-07-131-21/+27
|
* documentation about pipelinesandy2011-07-131-0/+75
|