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

Remove not readonly commands #2832 #2871

Merged
merged 29 commits into from
Jun 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
10ebbf4
Remove not readonly commands #2832
thachlp Jun 4, 2024
e3080fd
Fix comment
thachlp Jun 8, 2024
36dc55a
Update test
thachlp Jun 10, 2024
1dcef97
Update cicd.yaml
atakavci Apr 24, 2024
430945e
GitHub issue template polishing and stale issues action (#2833)
tishun Apr 25, 2024
c1d213c
Implement HEXPIRE, HEXPIREAT, HEXPIRETIME and HPERSIST (#2836)
tishun Apr 25, 2024
9781769
MAke sure we wait for the check so it does not fail on the slower pip…
tishun Apr 30, 2024
53050ea
Add support for `SPUBLISH` (#2838)
atakavci May 2, 2024
e8ae914
Applying code formatter each time we run a Maven build (#2841)
tishun May 2, 2024
c0c5782
Update cicd.yaml
atakavci May 7, 2024
4eac609
Add support CLIENT KILL [MAXAGE] (#2782)
dengliming May 14, 2024
2899770
Add support for `SUNSUBSCRIBE` #2759 (#2851)
atakavci May 20, 2024
7a5f988
Mark dnsResolver(DnsResolver) as deprecated. (#2855)
yfwz100 May 22, 2024
11e5ee6
Implement HPEXPIRE, HPEXPIREAT, HPEXPIRETIME, HTTL and HPTTL (#2857)
tishun May 22, 2024
5612e29
XREAD support for reading last message from stream (#2863)
tishun May 28, 2024
7d5087e
Add a `evalReadOnly` overload that accepts the script as a `String` (…
BalmungSan May 31, 2024
9832f90
Add release drafter workflow (#2820)
tishun Jun 6, 2024
3c44012
Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.…
dependabot[bot] Jun 7, 2024
1c272ec
Bump org.codehaus.mojo:flatten-maven-plugin from 1.5.0 to 1.6.0 (#2874)
dependabot[bot] Jun 7, 2024
eb07932
Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.1 (#…
dependabot[bot] Jun 7, 2024
a5e535c
Bump org.openjdk.jmh:jmh-generator-annprocess from 1.21 to 1.37 (#2876)
dependabot[bot] Jun 7, 2024
d3b6214
Bump org.apache.commons:commons-pool2 from 2.11.1 to 2.12.0 (#2877)
dependabot[bot] Jun 7, 2024
544ec67
Setting the next release to be 6.4.x as part of #2880 (#2881)
tishun Jun 7, 2024
caadbfe
Modify the release acrtion to call the proper maven target for releas…
tishun Jun 7, 2024
74ec22f
Format file
thachlp Jun 11, 2024
8fdbd97
Using interface method from java 8 instead of java 9
thachlp Jun 12, 2024
a1ab7ef
Fix test
thachlp Jun 12, 2024
fe2f247
Revert readwrite command to the list
thachlp Jun 12, 2024
2f54211
Merge branch 'main' into remove-not-read-only-command
thachlp Jun 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ public static Set<CommandType> getReadOnlyCommands() {
}

enum CommandName {
ASKING, BITCOUNT, BITPOS, CLIENT, COMMAND, DUMP, ECHO, EVAL_RO, EVALSHA_RO, EXISTS, FCALL_RO, //
GEODIST, GEOPOS, GEORADIUS, GEORADIUS_RO, GEORADIUSBYMEMBER, GEORADIUSBYMEMBER_RO, GEOSEARCH, GEOHASH, GET, GETBIT, //
BITCOUNT, BITPOS, CLIENT, COMMAND, DUMP, ECHO, EVAL_RO, EVALSHA_RO, EXISTS, FCALL_RO, //
GEODIST, GEOPOS, GEORADIUS_RO, GEORADIUSBYMEMBER_RO, GEOHASH, GET, GETBIT, //
GETRANGE, HEXISTS, HGET, HGETALL, HKEYS, HLEN, HMGET, HRANDFIELD, HSCAN, HSTRLEN, //
HVALS, INFO, KEYS, LINDEX, LLEN, LPOS, LRANGE, SORT_RO, MGET, PFCOUNT, PTTL, //
RANDOMKEY, READWRITE, SCAN, SCARD, SCRIPT, //
RANDOMKEY, SCAN, SCARD, SCRIPT, //
SDIFF, SINTER, SISMEMBER, SMISMEMBER, SMEMBERS, SRANDMEMBER, SSCAN, STRLEN, //
SUNION, TIME, TTL, TYPE, //
XINFO, XLEN, XPENDING, XRANGE, XREVRANGE, XREAD, //
Expand Down
Loading