fastogt / fastonosql

FastoNoSQL is a crossplatform Redis, Memcached, SSDB, LevelDB, RocksDB, UnQLite, LMDB, ForestDB, Pika, Dynomite, KeyDB GUI management tool.
https://fastonosql.com
GNU General Public License v3.0
1.18k stars 97 forks source link

any tutorials for beginners? lmdb on ubuntu #21

Closed kumrzz closed 7 years ago

kumrzz commented 7 years ago

are there any beginner tutorials out there on how to use fastonosql? I am trying to open a lmdb file (data.mdb+lock.mdb) which is password-protected, in ubuntu.

when I try connecting, I get the below, how do I pass login parameters? 16:32:29.097: Fail open database: Permission denied

I tried running command INFO and got: 16:30:55.818: Invalid input argument for command: 'INFO', passed 0 arguments, must be in range 1 - 1.

topilski commented 7 years ago

Hi @kumrzz , you can use this page: http://fastonosql.com/help but it is only for redis. For lmdb please specify folder of files and use test button for testing connection. In console after command please use '(' it will show little help how to use it.

kumrzz commented 7 years ago

hi @topilski that only contains two gifs, which I have already followed: I have already opened the file in question by specifying the folder and using the test button(was successful) ... only after I connect do I see what I posted. So I was looking for a more detailed guide, ideally with a list of usable commands, syntax etc.

topilski commented 7 years ago

Hi @kumrzz for lmdb we support next commands https://github.com/fastogt/fastonosql/blob/master/src/core/db/lmdb/internal/commands_api.h , SET key value, GET key, DEL key (also right click on db you can see some useful options) this command will work for all databases. Sorry but for lmdb we can't have some tutorial, also some tests of db you can find here https://github.com/fastogt/fastonosql/blob/master/tests/mock_tests/test_connections.cpp

kumrzz commented 7 years ago

nice, thanks v much @topilski

topilski commented 7 years ago

You are welcome!