ReQL command: repl
Command syntax
conn.repl()
Description
Set the default connection to make REPL use easier. Allows calling
.run() on queries without specifying a connection.
Note: Avoid using repl in application code. RethinkDB connection objects are not thread-safe, and calls to connect from multiple threads may change the global connection object used by repl. Applications should specify connections explicitly.
Example: Set the default connection for the REPL, then call
run() without specifying the connection.
r.connect(db='marvel').repl()
r.table('heroes').run()
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub
Contribute: edit this page or open an issue