ByteStorage / FlyDB

The high-performance kv storage engine based on bitcask paper made in golang
Apache License 2.0
1.25k stars 100 forks source link

Cli supports commands ignoring case #295

Open Uncle-Justice opened 1 year ago

Uncle-Justice commented 1 year ago
uj001@uj001:~/flydb$ ./bin/flydb-client 127.0.0.1:8999

              ______    __             ____     ____ 
             / ____/   / /   __  __   / __ \   / __ )
            / /       / /   / / / /  / / / /  / /_/ /
           / /_      / /   / / / /  / / / /  / __ |
          / __/     / /   / /_/ /  / / / /  / / / / 
         / /       / /    \__, /  / /_/ /  / /_/ /  
        /_/       /_/    ,__/ /  /_____/  /_____/  
                        /____/                                              

flydb $> LPush l1 1
LPush data success
flydb $> lpush l1 1
error: unknown command, try 'help'
qishenonly commented 1 year ago

At present, FlyDB-Cli exclusively supports uppercase commands and does not handle operations that are case-insensitive.