apache / couchdb-fauxton

Fauxton is the new Web UI for CouchDB
https://github.com/apache/couchdb-fauxton
Apache License 2.0
377 stars 225 forks source link

Feature request: Show how many rows are in a view #1225

Open BrentOfAllPeople opened 4 years ago

BrentOfAllPeople commented 4 years ago

I just switched to Fauxton from Futon. One thing I miss about Futon is that it showed how many rows there are in a particular view. In Fauxton, that information isn't readily available. I can still get it by clicking on the JSON icon in the menu bar, but it would be nice to have that information upfront, perhaps at the bottom next to "Showing document 1 - 20". Thanks.

garrensmith commented 4 years ago

We intentionally left out the row count. The problem is the total rows in a view is a little deceptive. If you start using startkey/end key to query, the total rows returned is for all the docs in the view not for the query. So in the dashboard, we can’t guarantee that the total rows is correct.


From: BrentOfAllPeople notifications@github.com Sent: Tuesday, September 24, 2019 6:08 PM To: apache/couchdb-fauxton Cc: Subscribed Subject: [apache/couchdb-fauxton] Feature request: Show how many rows are in a view (#1225)

I just switched to Fauxton from Futon. One thing I miss about Futon is that it showed how many rows there are in a particular view. In Fauxton, that information isn't readily available. I can still get it by clicking on the JSON icon in the menu bar, but it would be nice to have that information upfront, perhaps at the bottom next to "Showing document 1 - 20". Thanks.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/apache/couchdb-fauxton/issues/1225?email_source=notifications&email_token=AABL2AUFQG3EJDMRYPDCJ7DQLI3OBA5CNFSM4I2BYE6KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HNLTIWA, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AABL2AXWZRIJXWQR3DMPL6TQLI3OBANCNFSM4I2BYE6A.

iamgollum commented 4 years ago

Related to #1208