You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have a database in CouchDB with a design doc index that is currently being updated.
Go to the "metadata" page for this design doc in Fauxton. Let's say http://localhost:5984/_utils/#/database/users/_design/usernames/_info as an example.
Observe in networks tab in browser dev tools that Fauxton is making requests to CouchDB for info every few seconds, yet it's not updating the page with new data.
For example, I load a Fauxton page like http://localhost:5984/_utils/#/database/users/_design/usernames/_info and it shows the following info on the page:
_design/usernames Metadata
Index Information
Language: Javascript
Currently being updated? Yes
Currently running compaction? Yes
Waiting for a commit? Yes
Clients waiting for the index: 12
Update sequence on DB: 229000
Processed purge sequence: 0
Actual data size (bytes): 1,716,553,382
Data size on disk (bytes): 2,189,875,620
MD5 Signature:
Observe in the browser dev tools that as mentioned this Fauxton page is then repeatedly making requests to in this case http://localhost:5984/users/_design/usernames/_info. A response from this looks like:
So all of the info that is being shown on the page is actually getting fresh data every few seconds. But this is not shown to the user. The page remains unchanged from how it looked when it loaded, even though it is retrieving fresh data.
It would make a lot of sense IMO, to update what is shown on the page every time the Fauxton web UI keeps making this info request anyway.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
http://localhost:5984/_utils/#/database/users/_design/usernames/_info
as an example.For example, I load a Fauxton page like
http://localhost:5984/_utils/#/database/users/_design/usernames/_info
and it shows the following info on the page:Observe in the browser dev tools that as mentioned this Fauxton page is then repeatedly making requests to in this case
http://localhost:5984/users/_design/usernames/_info
. A response from this looks like:So all of the info that is being shown on the page is actually getting fresh data every few seconds. But this is not shown to the user. The page remains unchanged from how it looked when it loaded, even though it is retrieving fresh data.
It would make a lot of sense IMO, to update what is shown on the page every time the Fauxton web UI keeps making this info request anyway.
The text was updated successfully, but these errors were encountered: