Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved declaration structure #3

Open
wants to merge 2,244 commits into
base: 74bcc59cf712901bf4b4
Choose a base branch
from
Open

Improved declaration structure #3

wants to merge 2,244 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Nov 5, 2019

  1. Issue phpredis#1664

    In PR phpredis#1602 we decided to use unsigned short for storing RedisSock->port
    but in previous release I reverted that change. In this PR I changed
    signatire of redis_sock_create to prevent unneccecary convertion of types.
    yatsukhnenko authored and michael-grunder committed Nov 5, 2019
    Configuration menu
    Copy the full SHA
    2bae801 View commit details
    Browse the repository at this point in the history
  2. Tests for unix socket and high ports

    Adds some tests to protect against regressions when connecting to unix
    sockets and high ports.
    michael-grunder committed Nov 5, 2019
    Configuration menu
    Copy the full SHA
    9f4eded View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    741df6c View commit details
    Browse the repository at this point in the history
  4. Merge pull request phpredis#1666 from fitztrev/patch-1

    Update docs for Zstd
    yatsukhnenko authored Nov 5, 2019
    Configuration menu
    Copy the full SHA
    ba256a0 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2019

  1. Create FUNDING.yml

    yatsukhnenko authored Nov 6, 2019
    Configuration menu
    Copy the full SHA
    6f3f378 View commit details
    Browse the repository at this point in the history
  2. Merge pull request phpredis#1667 from phpredis/sponsors

    Create FUNDING.yml
    yatsukhnenko authored Nov 6, 2019
    Configuration menu
    Copy the full SHA
    82f82f9 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2019

  1. Update changelog

    yatsukhnenko committed Nov 7, 2019
    Configuration menu
    Copy the full SHA
    9633666 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2019

  1. Update changelog

    yatsukhnenko committed Nov 11, 2019
    Configuration menu
    Copy the full SHA
    5c7bc39 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2019

  1. Configuration menu
    Copy the full SHA
    23b1a9d View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2019

  1. Issue phpredis#1668

    Add helper function to check liveness of connection after getting it
    from the pool. Send `AUTH` before `PING` if necessary in pipeline.
    yatsukhnenko authored and michael-grunder committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    99ebd0c View commit details
    Browse the repository at this point in the history
  2. Switch to snprintf and modify challenge string

    * It should be impossible to cause a buffer overrun with this format
    string but use the safer version anyway.
    
    * Make the phpredis challenge string searchable and add 32 bits of
    entropy since it's theoretically possible that two machines would
    generate the same `tv_sec` + `tv_usec` string.
    michael-grunder committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    3243f42 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2019

  1. Issue phpredis#1668

    Add helper function to check liveness of connection after getting it
    from the pool. Send `AUTH` before `PING` if necessary in pipeline.
    yatsukhnenko authored and michael-grunder committed Dec 5, 2019
    Configuration menu
    Copy the full SHA
    7b6072e View commit details
    Browse the repository at this point in the history
  2. Switch to snprintf and modify challenge string

    * It should be impossible to cause a buffer overrun with this format
    string but use the safer version anyway.
    
    * Make the phpredis challenge string searchable and add 32 bits of
    entropy since it's theoretically possible that two machines would
    generate the same `tv_sec` + `tv_usec` string.
    michael-grunder committed Dec 5, 2019
    Configuration menu
    Copy the full SHA
    25cdaee View commit details
    Browse the repository at this point in the history
  3. Update changelog

    yatsukhnenko committed Dec 5, 2019
    Configuration menu
    Copy the full SHA
    5eb4f45 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9dbde8d View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2019

  1. Configuration menu
    Copy the full SHA
    a5f9592 View commit details
    Browse the repository at this point in the history
  2. Update changelog

    yatsukhnenko committed Dec 7, 2019
    Configuration menu
    Copy the full SHA
    3d83157 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2019

  1. TravisCI: PHP-7.4

    yatsukhnenko committed Dec 8, 2019
    Configuration menu
    Copy the full SHA
    db44613 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2020

  1. Fix proto comments for host_port in RedisCluster

    These methods accept a single argument, not two arguments.
    (cluster_cmd_get_slot accepts one argument)
    TysonAndre committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    2ddc5f2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f52bd8a View commit details
    Browse the repository at this point in the history
  3. Merge pull request phpredis#1697 from TysonAndre/fix-typos

    Fix typos detected by codespell
    yatsukhnenko authored Jan 6, 2020
    Configuration menu
    Copy the full SHA
    1ff7dfb View commit details
    Browse the repository at this point in the history
  4. Merge pull request phpredis#1696 from TysonAndre/fix-redis_cluster-proto

    Fix proto comments for host_port in RedisCluster
    yatsukhnenko authored Jan 6, 2020
    Configuration menu
    Copy the full SHA
    2c35e43 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2020

  1. Configuration menu
    Copy the full SHA
    3c48a33 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7a79ad9 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2020

  1. Remove "PHP Version 5" section

    package.xml has a minimum version of 7.0
    PHP 8.0 will probably be out in around a year.
    TysonAndre committed Jan 13, 2020
    Configuration menu
    Copy the full SHA
    0ef488f View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2020

  1. Merge pull request phpredis#1698 from TysonAndre/php-7-header

    Remove "PHP Version 5" comment section
    yatsukhnenko authored Jan 14, 2020
    Configuration menu
    Copy the full SHA
    2d39b48 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2020

  1. Configuration menu
    Copy the full SHA
    a107c9f View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2020

  1. Configuration menu
    Copy the full SHA
    d07a8df View commit details
    Browse the repository at this point in the history
  2. Create a specific exception for 'test skipped'

    I our test suite we were only checking if an exception was an instance
    of `RedisException` and marking the test 'SKIPPED' if not.  This was
    masking a failure in the RedisCluster test for testMultiExec by showing
    it as skipped when it was actually throwing an exception (not being able
    to execute the MULTI across the cluster).
    michael-grunder committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    c3d83d4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9410a7d View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2020

  1. Configuration menu
    Copy the full SHA
    ba73fbe View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2020

  1. Issue phpredis#1646

    Add TYPE param to SCAN command.
    Arginfo wasn't updated so this change isn't breaking change :)
    yatsukhnenko authored and michael-grunder committed Feb 6, 2020
    Configuration menu
    Copy the full SHA
    8eb39a2 View commit details
    Browse the repository at this point in the history
  2. Adds a test for phpredis#1646

    NOTE:  [This
    comment](redis/redis#6116 (comment))
    indicates the feature may be backported to Redis 5, so we'll want to
    change our unit test if that happens.
    michael-grunder committed Feb 6, 2020
    Configuration menu
    Copy the full SHA
    544e641 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53fb36c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b1724b8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c94e28f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    90cb69f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    46da22b View commit details
    Browse the repository at this point in the history
  8. Add documentation

    yatsukhnenko authored and michael-grunder committed Feb 6, 2020
    Configuration menu
    Copy the full SHA
    5a609fa View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2020

  1. Configuration menu
    Copy the full SHA
    23f9de3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    383779e View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2020

  1. Update config,w32 with sentinel sources

    The sentinel sources were added to config.m4 in phpredis@c94e28f#diff-788d457a20b110cc38e571dec9ddc68c
    
    They should be added to config.w32 as well.
    Jan-E authored and michael-grunder committed Feb 11, 2020
    Configuration menu
    Copy the full SHA
    17ddbe7 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2020

  1. Configuration menu
    Copy the full SHA
    bf27e6e View commit details
    Browse the repository at this point in the history
  2. Issue.1714 json session tests (phpredis#1717)

    * Add json.so as well if we don't find it.
    
    See phpredis#1714
    
    * Remove added newline
    michael-grunder authored Mar 2, 2020
    Configuration menu
    Copy the full SHA
    0ce7ca2 View commit details
    Browse the repository at this point in the history
  3. Issue.1636 del documentation (phpredis#1718)

    * Update multiple key command documentation
    
    See phpredis#1636
    michael-grunder authored Mar 2, 2020
    Configuration menu
    Copy the full SHA
    92f8dde View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2020

  1. Configuration menu
    Copy the full SHA
    d5dadaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    190c0d3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9ee94ca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7e4c7b3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c86568 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2020

  1. Configuration menu
    Copy the full SHA
    460c8f2 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. Issue phpredis#1721

    Sanity check for redis_sock->stream before closing.
    yatsukhnenko authored and michael-grunder committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    b7f9df7 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2020

  1. Configuration menu
    Copy the full SHA
    a8e2b02 View commit details
    Browse the repository at this point in the history
  2. Update Changelog.md

    yatsukhnenko committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    6b82d40 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2020

  1. Configuration menu
    Copy the full SHA
    a42cf18 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2020

  1. Configuration menu
    Copy the full SHA
    bbcf32a View commit details
    Browse the repository at this point in the history
  2. Update Changelog.md

    yatsukhnenko committed Mar 21, 2020
    Configuration menu
    Copy the full SHA
    48b3dd6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8c45816 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2020

  1. Configuration menu
    Copy the full SHA
    dd66fce View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2020

  1. requirepass

    yatsukhnenko committed Mar 30, 2020
    Configuration menu
    Copy the full SHA
    e37f38a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35372a1 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2020

  1. Configuration menu
    Copy the full SHA
    4ef465b View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2020

  1. Configuration menu
    Copy the full SHA
    6808cd6 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2020

  1. Configuration menu
    Copy the full SHA
    73212e1 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2020

  1. Make unit test authentication configurable (phpredis#1748)

    Right now cloning the repo and running unit tests will all fail if the
    Redis/RedisCluster instances aren't configured with the password
    'phpredis'.
    
    This commit simply makes authentication during the tests optional via a
    command-line argument.
    michael-grunder authored May 1, 2020
    Configuration menu
    Copy the full SHA
    201a975 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2020

  1. fix [-Wformat=] warning on 32-bit (phpredis#1750)

    Use the portable `ZEND_LONG_FORMAT` family instead of C format specifiers
    remicollet authored May 6, 2020
    Configuration menu
    Copy the full SHA
    b9b383f View commit details
    Browse the repository at this point in the history

Commits on May 8, 2020

  1. Update changelog

    yatsukhnenko committed May 8, 2020
    Configuration menu
    Copy the full SHA
    98499bb View commit details
    Browse the repository at this point in the history
  2. Fix scan-build warning

    yatsukhnenko committed May 8, 2020
    Configuration menu
    Copy the full SHA
    215828e View commit details
    Browse the repository at this point in the history

Commits on May 17, 2020

  1. Configuration menu
    Copy the full SHA
    508fef6 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2020

  1. Issue phpredis#548 (phpredis#1649)

    Adds `Redis::SCAN_PREFIX` and `Redis::SCAN_NOPREFIX` as options to SCAN.
    
    See phpredis#548
    yatsukhnenko authored May 19, 2020
    Configuration menu
    Copy the full SHA
    e80600e View commit details
    Browse the repository at this point in the history

Commits on May 21, 2020

  1. Configuration menu
    Copy the full SHA
    20a3dc7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request phpredis#1763 from mi-nakano/bugfix/PHP_REDIS_JSON

    bugfix: PHP_REDIS_JSON parameter at configure
    yatsukhnenko authored May 21, 2020
    Configuration menu
    Copy the full SHA
    3ceb410 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2020

  1. During scan build the command using long type for iterator instead of…

    … int. Shall resolve issues with Redis Enterprise which uses big 64 bit numbers for cursor.
    
    Conflicts:
    	redis.c
    victor authored and yatsukhnenko committed May 22, 2020
    Configuration menu
    Copy the full SHA
    f13f9b7 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2020

  1. Adds Redis 6.0 KEEPTTL option for SET (phpredis#1766)

    Added support for KEEPTTL option of SET command, which added in Redis 6
    
    See: phpredis#1761
    
    Co-authored-by: victor <[email protected]>
    michael-grunder and victor authored May 23, 2020
    Configuration menu
    Copy the full SHA
    f9c7bb5 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2020

  1. Configuration menu
    Copy the full SHA
    5bf8812 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2020

  1. Issue phpredis#1600

    Ssl context options in Redis::connect
    yatsukhnenko committed Jun 2, 2020
    Configuration menu
    Copy the full SHA
    b067129 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e41e19a View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2020

  1. Configuration menu
    Copy the full SHA
    a25d1b8 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2020

  1. Configuration menu
    Copy the full SHA
    890ee0e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58dab56 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2020

  1. Issue.1762 xinfo full (phpredis#1771)

    Add support for `XINFO STREAM FULL [COUNT]`
    michael-grunder authored Jun 7, 2020
    Configuration menu
    Copy the full SHA
    a0c53e0 View commit details
    Browse the repository at this point in the history
  2. Issue.1765 (phpredis#1774)

    Various improvements and fixes to cluster slot caching.
    
    * Improves slot caching so any unique set of seeds all hash to the same key
    
    * Fix a couple of memory leaks.
    
    * Fixes a segfault when executing a multiple key command such as `MGET` or `MSET` while the cluster is resharding.
    michael-grunder authored Jun 7, 2020
    Configuration menu
    Copy the full SHA
    5ca4141 View commit details
    Browse the repository at this point in the history
  3. Rebased LZ4 PR (phpredis#1781)

    LZ4 compression by @iliaal
    michael-grunder authored Jun 7, 2020
    Configuration menu
    Copy the full SHA
    04def9f View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2020

  1. Configuration menu
    Copy the full SHA
    f11352f View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2020

  1. redis clone

    iliaal committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    94212a9 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2020

  1. Create new socket on clone

    iliaal committed Jun 19, 2020
    Configuration menu
    Copy the full SHA
    b9713e5 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2020

  1. Support for Redis 6 ACLs (phpredis#1791)

    Add support for Redis 6 ACLs in the `Redis`, `RedisCluster`, and `RedisArray` classes.
    
    On a related note, it adds a mechanism for users to customize how we generate persistent connection IDs such that they can be grouped in different ways depending on the specific use case required (e.g. it would allow connections to be grouped by username, or by user-defined persistent_id, or both).
    michael-grunder authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    a311cc4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    857a2af View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f7ed4aa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dd3a11a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0838b5b View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2020

  1. fix lz4 library name

    remicollet committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    19269cb View commit details
    Browse the repository at this point in the history
  2. copy/paste err

    remicollet committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    e5de8fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f57fae5 View commit details
    Browse the repository at this point in the history
  4. fix test syntax

    remicollet committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    f74207b View commit details
    Browse the repository at this point in the history
  5. use pkg-config for liblz4

    remicollet committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    a88186c View commit details
    Browse the repository at this point in the history
  6. Merge pull request phpredis#1779 from phpredis/issue-pkgconfig

    use pkg-config for libzstd and liblzf
    yatsukhnenko authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    73cf2e3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    262cc70 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    57bb95b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    df398cb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3ba3f06 View commit details
    Browse the repository at this point in the history
  11. Prepare for 5.3.0RC2

    michael-grunder committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    5ceba7c View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2020

  1. Prepare for 5.3.0 GA

    michael-grunder committed Jun 30, 2020
    Configuration menu
    Copy the full SHA
    adbc12e View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2020

  1. Merge tag '5.3.0' into develop

    phpredis 5.3.0
    
      This release contains initial support for Redis 6 ACLs, LZ4 compression,
      and many more fixes and improvements.
    
      You can find a detailed list of changes in Changelog.md and package.xml
    
      A special thanks to BlueHost for sponsoring ACL support \o/
    
      * Sponsors
        ~ Audiomack - https://audiomack.com
        ~ BlueHost - https://bluehost.com
        ~ Redis Cache Pro for WordPress - https://wprediscache.com
        ~ Avtandil Kikabidze - https://github.com/akalongman
    michael-grunder committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    a5783b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c56289 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2020

  1. Configuration menu
    Copy the full SHA
    6ba7cff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b4779e6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request phpredis#1799 from weberhofer/patch-1

    Added installation section for openSUSE
    yatsukhnenko authored Jul 2, 2020
    Configuration menu
    Copy the full SHA
    13a168f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08f202e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    83a1b7c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ff2e160 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2020

  1. Prepare for 5.3.1

    michael-grunder committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    5d30e97 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e20b1ce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7fed60f View commit details
    Browse the repository at this point in the history
  4. Prepare for 5.3.1

    michael-grunder committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    b899689 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2020

  1. Configuration menu
    Copy the full SHA
    49428a2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    066cff6 View commit details
    Browse the repository at this point in the history
  3. Prepare for 5.3.1

    michael-grunder committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    b465b79 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    14ac969 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bee44fb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f771ea1 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2020

  1. Configuration menu
    Copy the full SHA
    a7662da View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2020

  1. Configuration menu
    Copy the full SHA
    e9e47be View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2020

  1. Update zAdd/zRangeByScore documentation (phpredis#1815)

    * Update zAdd functionality
    * Fix readability additional params
    * Add example of -inf/+inf for zRangeByScore
    aalwash authored Jul 21, 2020
    Configuration menu
    Copy the full SHA
    c9ed151 View commit details
    Browse the repository at this point in the history
  2. Added auth support

    iliaal committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    7c43c54 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2020

  1. Configuration menu
    Copy the full SHA
    c595064 View commit details
    Browse the repository at this point in the history
  2. Merge pull request phpredis#1823 from phpredis/liveness-check

    Refactor redis_sock_check_liveness
    yatsukhnenko authored Aug 5, 2020
    Configuration menu
    Copy the full SHA
    afcb303 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2020

  1. Configuration menu
    Copy the full SHA
    b2cffff View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2020

  1. Issue phpredis#1831

    yatsukhnenko committed Aug 28, 2020
    Configuration menu
    Copy the full SHA
    5719c9f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    566fdee View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2351d12 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2020

  1. Relax requirements on set's expire argument (phpredis#1830)

    Relax requirements on set's expire argument
    
    See: phpredis#1783
    michael-grunder authored Aug 30, 2020
    Configuration menu
    Copy the full SHA
    3645807 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. Issue phpredis#1794

    yatsukhnenko committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    500916a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f5c6fb0 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2020

  1. Issue phpredis#1782

    Allow to specify stream context for rediscluster session handler.
    yatsukhnenko committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    a8daaff View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Issue phpredis#1782

    Update documentation.
    yatsukhnenko committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    4fbe7df View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7e8c3eb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    398c99d View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2020

  1. Configuration menu
    Copy the full SHA
    f1f07d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3780b4 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2020

  1. Configuration menu
    Copy the full SHA
    f4a30cb View commit details
    Browse the repository at this point in the history
  2. fix arg indexes

    remicollet committed Sep 11, 2020
    Configuration menu
    Copy the full SHA
    1784879 View commit details
    Browse the repository at this point in the history
  3. Merge pull request phpredis#1845 from phpredis/issue-php8test

    fix test suite for PHP 8
    yatsukhnenko authored Sep 11, 2020
    Configuration menu
    Copy the full SHA
    7e5191f View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2020

  1. PHP 8 compatibility Windows

    Jan-E committed Sep 22, 2020
    Configuration menu
    Copy the full SHA
    5b3771a View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2020

  1. Issue.1847 cluster segfault (phpredis#1850)

    Fix for phpredis#1847 when dealing with NULL multi bulk replies in RedisCluster.
    
    Adds `Redis::OPT_NULL_MULTIBULK_AS_NULL` setting to have PhpRedis
    treat NULL multi bulk replies as `NULL` instead of `[]`.
    
    Co-authored-by: Alex Offshore <[email protected]>
    michael-grunder and offshore authored Sep 28, 2020
    Configuration menu
    Copy the full SHA
    950e8de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    81c502a View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2020

  1. Update Changelog.md

    yatsukhnenko committed Oct 7, 2020
    Configuration menu
    Copy the full SHA
    44345f0 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2020

  1. Configuration menu
    Copy the full SHA
    514bc37 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2020

  1. Update Changelog.md

    yatsukhnenko committed Oct 14, 2020
    Configuration menu
    Copy the full SHA
    39513ca View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2020

  1. Issue phpredis#1865

    Use "%.17g" sprintf format for doubles.
    yatsukhnenko committed Oct 21, 2020
    Configuration menu
    Copy the full SHA
    32be300 View commit details
    Browse the repository at this point in the history
  2. Issue phpredis#1864 (phpredis#1867)

    Allow `$options` to be passed as `NULL`.
    yatsukhnenko authored Oct 21, 2020
    Configuration menu
    Copy the full SHA
    72024af View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2020

  1. Configuration menu
    Copy the full SHA
    ba4d3ba View commit details
    Browse the repository at this point in the history
  2. Update Changelog.md

    yatsukhnenko committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    fc195d6 View commit details
    Browse the repository at this point in the history
  3. 5.3.2

    yatsukhnenko committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    d2c927b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2716cc0 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2020

  1. Update README.markdown (phpredis#1874)

    missing quote
    MiRacLe-RPZ authored Oct 29, 2020
    Configuration menu
    Copy the full SHA
    09accba View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Configuration menu
    Copy the full SHA
    2634350 View commit details
    Browse the repository at this point in the history
  2. Refactor RedisArray

    yatsukhnenko committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    6ca64a1 View commit details
    Browse the repository at this point in the history
  3. Refactor ra_generic_del

    yatsukhnenko committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    d67e360 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    43a39af View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2020

  1. Configuration menu
    Copy the full SHA
    9f2972b View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2020

  1. Issue phpredis#1873

    ZADD scores must be numeric or '-inf', '+inf'
    yatsukhnenko committed Nov 16, 2020
    Configuration menu
    Copy the full SHA
    3a09f69 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2020

  1. Configuration menu
    Copy the full SHA
    32564e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2020

  1. Configuration menu
    Copy the full SHA
    a09b65b View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2020

  1. TravisCI: add PHP 8.0

    yatsukhnenko committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    477682e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de98515 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2020

  1. Configuration menu
    Copy the full SHA
    7d67749 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2020

  1. Configuration menu
    Copy the full SHA
    ee82299 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2020

  1. Issue phpredis#1893

    On some locales `snprintf` uses comma as radix character.
    Simply replace comma with point to make valid float value.
    yatsukhnenko committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    0fa1046 View commit details
    Browse the repository at this point in the history
  2. [WIP] Issue phpredis#1894

    Add Redis::sMisMember command.
    yatsukhnenko committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    6215347 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2020

  1. Configuration menu
    Copy the full SHA
    14b9114 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43efc8a View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2021

  1. Configuration menu
    Copy the full SHA
    69e1a1b View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2021

  1. Fix Redis::sMisMember.

    yatsukhnenko committed Jan 17, 2021
    Configuration menu
    Copy the full SHA
    a024a9a View commit details
    Browse the repository at this point in the history
  2. [WIP] Issue phpredis#1894

    Add Redis::zMscore command.
    yatsukhnenko committed Jan 17, 2021
    Configuration menu
    Copy the full SHA
    a534a2c View commit details
    Browse the repository at this point in the history
  3. Issue phpredis#1907

    Add PHP version badge from Travis config.
    yatsukhnenko committed Jan 17, 2021
    Configuration menu
    Copy the full SHA
    76d75a6 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2021

  1. Configuration menu
    Copy the full SHA
    97f2a3e View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2021

  1. Typo when declaring a cluster with an array of seeds (phpredis#1914)

    In the given example, the number of nodes is three, not two.
    tatekan authored Jan 21, 2021
    Configuration menu
    Copy the full SHA
    e9ba9ff View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2021

  1. Fixed#1895

    defender-11 committed Jan 22, 2021
    Configuration menu
    Copy the full SHA
    c61396c View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2021

  1. Configuration menu
    Copy the full SHA
    b24ce29 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2021

  1. Configuration menu
    Copy the full SHA
    41e74ff View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2021

  1. [WIP] Issue phpredis#1894

    Add Redis::lMove command.
    yatsukhnenko committed Jan 29, 2021
    Configuration menu
    Copy the full SHA
    f3ad8e2 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2021

  1. Configuration menu
    Copy the full SHA
    d6458ca View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2021

  1. Fixed#1895

    defender-11 authored and michael-grunder committed Jan 31, 2021
    Configuration menu
    Copy the full SHA
    87297cb View commit details
    Browse the repository at this point in the history
  2. PHP 8 compatibility Windows

    Jan-E authored and michael-grunder committed Jan 31, 2021
    Configuration menu
    Copy the full SHA
    270b4db View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2021

  1. Configuration menu
    Copy the full SHA
    9d0cd31 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    656dd5f View commit details
    Browse the repository at this point in the history
  3. Disable clone handlers for Redis and RedisCluster.

    Presently PhpRedis will segfault if users attempt to clone either the
    Redis or RedisCluster objects.
    
    We plan on investigating proper clone support in future releases, but
    for now just diable the handlers.
    michael-grunder committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    cd05a34 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b50b361 View commit details
    Browse the repository at this point in the history
  5. 5.3.2

    michael-grunder committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    9dbd3c5 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2021

  1. [WIP] Issue phpredis#1894

    Add RedisSentinel::myid command
    yatsukhnenko committed Feb 20, 2021
    Configuration menu
    Copy the full SHA
    5eb58a4 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2021

  1. Configuration menu
    Copy the full SHA
    06051c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1f2a7ef View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e61ee1d View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2021

  1. Fix ZSTD decompression on bad data.

    ZSTD uses two defined error numbers to inform the caller when the
    compressed data is invalid (e.g. wrong magic number) or the size is
    unknown.
    
    We should always know the size so abort if ZSTD returns either to us.
    
    Fixes: phpredis#1936
    michael-grunder committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    8400ed1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request phpredis#1937 from phpredis/issue.1936-zstd-uncomp…

    …ression
    
    Fix ZSTD decompression on bad data.
    michael-grunder authored Feb 26, 2021
    Configuration menu
    Copy the full SHA
    f827ea0 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2021

  1. [WIP] Issue phpredis#1894

    Add Redis::copy command
    yatsukhnenko committed Feb 27, 2021
    Configuration menu
    Copy the full SHA
    037dbbf View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2021

  1. Configuration menu
    Copy the full SHA
    48d18fc View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2021

  1. Configuration menu
    Copy the full SHA
    dcf4b83 View commit details
    Browse the repository at this point in the history
  2. TravisCI: fix tests

    yatsukhnenko committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    963f2a9 View commit details
    Browse the repository at this point in the history
  3. [WIP] Issue phpredis#1894

    Add Redis::zdiff and Redis::zdiffstore commands
    yatsukhnenko committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    5d50fef View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2021

  1. Configuration menu
    Copy the full SHA
    05cb508 View commit details
    Browse the repository at this point in the history
  2. Fail if session lock can't be acquired, more sane lock wait defaults,…

    … and add more logging.
    mgriego authored and michael-grunder committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    687a0b4 View commit details
    Browse the repository at this point in the history
  3. Fix failing test.

    mgriego authored and michael-grunder committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    92d5e30 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    306fa25 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ba1314f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c8a9859 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2021

  1. Pass compression flag when performing HMGET (phpredis#1945)

    Without this, performing a HMGET call fails to decompress the data before
    returning it to php.
    aolley committed Mar 10, 2021
    Configuration menu
    Copy the full SHA
    ccd142f View commit details
    Browse the repository at this point in the history
  2. Merge pull request phpredis#1946 from aolley/issue.1945-hmget-compres…

    …sion
    
    Pass compression flag when performing HMGET (phpredis#1945)
    michael-grunder authored Mar 10, 2021
    Configuration menu
    Copy the full SHA
    f1e0f23 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2021

  1. Fix PhpRedis session tests to soften timing issues

    Rework the session locking unit tests to be less reliant on arbitrary
    sleep calls which can be very troublesome when running in Travis and
    especially when running in Travis under valgrind.
    
    Additionally, skip multiple newly added Redis 6.2 commands that aren't
    yet implemented in RedisCluster.
    michael-grunder committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    1a0ae97 View commit details
    Browse the repository at this point in the history
  2. Merge pull request phpredis#1947 from phpredis/fix-session-tests

    Fix session tests to soften timing issues
    michael-grunder authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    747d324 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2021

  1. Fix phpredis#1952

    roy committed Mar 18, 2021
    Configuration menu
    Copy the full SHA
    d3b76f7 View commit details
    Browse the repository at this point in the history
  2. fix

    sudo-plz authored Mar 18, 2021
    Configuration menu
    Copy the full SHA
    fe097a4 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2021

  1. [WIP] Issue phpredis#1894

    Add Redis::zinter and Redis::zunion commands
    yatsukhnenko committed Mar 20, 2021
    Configuration menu
    Copy the full SHA
    d5cf52c View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2021

  1. Merge pull request phpredis#1953 from sudo-plz/develop

    Fix phpredis#1952 Incorrect PHP method info on the RedisCluster time method
    yatsukhnenko authored Mar 21, 2021
    Configuration menu
    Copy the full SHA
    18fc12a View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2021

  1. Pass compression flag when performing HMGET (phpredis#1945)

    Without this, performing a HMGET call fails to decompress the data before
    returning it to php.
    aolley authored and michael-grunder committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    edc724e View commit details
    Browse the repository at this point in the history
  2. Fix ZSTD decompression on bad data.

    ZSTD uses two defined error numbers to inform the caller when the
    compressed data is invalid (e.g. wrong magic number) or the size is
    unknown.
    
    We should always know the size so abort if ZSTD returns either to us.
    
    Fixes: phpredis#1936
    michael-grunder committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    c48b3a2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fe9011d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cc6b37e View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2021

  1. Configuration menu
    Copy the full SHA
    c996ac3 View commit details
    Browse the repository at this point in the history
  2. Fix PhpRedis session tests to soften timing issues

    Rework the session locking unit tests to be less reliant on arbitrary
    sleep calls which can be very troublesome when running in Travis and
    especially when running in Travis under valgrind.
    michael-grunder committed Mar 23, 2021
    Configuration menu
    Copy the full SHA
    4b13944 View commit details
    Browse the repository at this point in the history
  3. Prepare for 5.3.4 v2

    michael-grunder committed Mar 23, 2021
    Configuration menu
    Copy the full SHA
    d98b9f2 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. More Travis-CI fixes

    michael-grunder committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    e67e1a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e3426c1 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2021

  1. Configuration menu
    Copy the full SHA
    c93eba4 View commit details
    Browse the repository at this point in the history
  2. cleanup unneeded cast

    remicollet committed Mar 25, 2021
    Configuration menu
    Copy the full SHA
    21cce78 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6da1758 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2021

  1. Merge pull request phpredis#1957 from phpredis/issue-1956

    Fix phpredis#1956 bad type usage on 32-bit
    michael-grunder authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    8eed7c7 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2021

  1. [WIP] Issue phpredis#1894

    Add GET option to SET command
    yatsukhnenko committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    b0b9dd7 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2021

  1. Configuration menu
    Copy the full SHA
    446ceb2 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2021

  1. Configuration menu
    Copy the full SHA
    6aa9c08 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2021

  1. [WIP] Issue phpredis#1894

    Add IDLE argument to XPENDING command
    yatsukhnenko committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    28de622 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2021

  1. Configuration menu
    Copy the full SHA
    37a9025 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2021

  1. [WIP] Issue phpredis#1894

    Add CLIENT INFO subcommand.
    yatsukhnenko committed Apr 26, 2021
    Configuration menu
    Copy the full SHA
    3c40582 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2021

  1. Configuration menu
    Copy the full SHA
    a95384f View commit details
    Browse the repository at this point in the history

Commits on May 30, 2021

  1. Configuration menu
    Copy the full SHA
    f03092a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67a92c5 View commit details
    Browse the repository at this point in the history
  3. fixes

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    eec2488 View commit details
    Browse the repository at this point in the history
  4. merge

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    3b67488 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d6d53be View commit details
    Browse the repository at this point in the history
  6. 1st patch

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    1869069 View commit details
    Browse the repository at this point in the history
  7. fixed checks

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    ee32e4d View commit details
    Browse the repository at this point in the history
  8. fixed checks

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    7c67fc5 View commit details
    Browse the repository at this point in the history
  9. Fixed check

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    5c42e48 View commit details
    Browse the repository at this point in the history
  10. merge

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    357f92e View commit details
    Browse the repository at this point in the history
  11. Added checks

    iliaal committed May 30, 2021
    Configuration menu
    Copy the full SHA
    91ffdd5 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2021

  1. Added lz4 test

    iliaal committed May 31, 2021
    Configuration menu
    Copy the full SHA
    dac3831 View commit details
    Browse the repository at this point in the history
  2. removed redundant code

    iliaal committed May 31, 2021
    Configuration menu
    Copy the full SHA
    1aa5210 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2021

  1. lz4 safety checks

    iliaal committed Aug 9, 2021
    Configuration menu
    Copy the full SHA
    46b76e8 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2021

  1. refine redis header

    iliaal committed Aug 10, 2021
    Configuration menu
    Copy the full SHA
    d593ad1 View commit details
    Browse the repository at this point in the history