list

Search

You can find the results of your search below.

postgres
5 Hits, Last modified:
ile ini /etc/postgresql/9.5/main/postgresql.conf> listen_addresses = '*' </file> ===== Basic operations ===== <code> # list databases \l # connect to database \c giano # list schema \dn # list tables in schema \dt auth.* # describe table \d+ auth.users # list of installed ex
redis
4 Hits, Last modified:
dis Demo" EXPIRE resource:lock 120 </code> ===== list ===== A list have an order RPUSH puts the new value at the end of the list. LPUSH puts the new value at the start of the list. LLEN, LPOP, RPOP <code> RPUSH friends "Alice" RPUSH