DBSight 2.0 released!
This thread will talk about some interesting new features. First of all, Batching Subsequent Queries.
We are working on DBSight 2.0, which should improve dbsight on many fronts. One of the improvement is the option to Batching Subsequent Queries.
Previously, you have a subsequent query like:
select * from comments where article_id = ?
It'll fetch all comments of an article. But this query will run for each article. DBSight needs to send the same query to the database.
Now, you can write the query like:
select * from comments where article_id in ( ? )
DBSight will recognize this pattern, and expand the query to:
select * from comments where article_id in ( ?,?,?,?,? )
when batch size is 5.
This should increase crawling performance a lot for some cases, especially when you are crawling a database far away from DBSight.
How does it sound?
And do you have some other suggestions? Please let us know when the feature set is still open.
