Performance PyOrient x Console
See original GitHub issueHello, when I run directly on ./console.sh a query, this one actually is taking
“87599 item(s) found. Query executed in 0.426 sec(s).”
And when I run using pyorient with that config:
db_name = "dbdbdb"
client = pyorient.OrientDB("192.168.1.175", 2424)
client.db_open(db_name, "root", "root")
start = time.time()
my_select = client.command("SELECT test FROM Test")
done = time.time()
elapsed = done - start
the exactly same query takes almost 4.60731482506 seconds. Am I missing something? Thank you.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
PyOrient · OrientDB Manual
OrientDB supports all JVM languages for server-side scripting. Using the PyOrient module, you can develop database applications for OrientDB using the Python ...
Read more >PyOrient Client - query() · OrientDB Manual
PyOrient Client - query(). This method issues a synchronous query to the open OrientDB database. Querying Records. In the event that you're more...
Read more >orientechnologies/orientdb-docs: Repository of the ... - GitHub
Welcome to OrientDB - the first Multi-Model Open Source NoSQL DBMS that brings together the power of graphs and the flexibility of documents...
Read more >OrientDB - Quick Guide - Tutorialspoint
OrientDB console v.2.1.9-SNAPSHOT (build 2.1.x@r; 2016-01-07 10:51:24+0000) www.orientdb.com Type 'help' to display all the supported commands.
Read more >How to find out if a class exists on an OrientDB using PyOrient?
I have seen the following Question, which gives answers in Java and SQL. I'm looking for the Python equivalent. python-3.x · orientdb ·...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can try with pyorient_native as decoder. and binary serialization.
Hi @Ostico And do you know any way to increase that, like using another way to connect to Orientdb using python?