- CouchDB and PHP Web Development Beginner’s Guide
- Tim Juravich
- 268字
- 2021-08-13 18:22:53
Futon
CouchDB comes with a built-in web-based administration console called Futon. Futon allows you to manage databases, users, and documents in a simple interface. The best part of Futon is that it's already installed and ready to go, since it comes packed with CouchDB.
Let's check it out:
- Open your browser.
- Go to
http://localhost:5984/_utils/
.This is Futon's Overview page. On this page, you can see all of the databases in the CouchDB installation and the ability to create new ones. You should see the database
test-db
that we created in the previous steps, and you can also see the_users
database that is in the CouchDB installation by default.If you look to the right-side of the window, you'll see Tools. We will use this when we cover Replicator later in the book.
- Let's dig further into our database
test-db
by clicking on the link fortest-db
in the database list on the Overview page.The page you see is the database detail. In this page, you can see a list of all of the documents that are in our database along with some actions that you can perform on the selected database such as New Document, Security, Compact & Cleanup..., Delete Database, Search, and so on. It's worth noting that Futon is just a helper, and all of these functions are available through
curl
as well. - Let's dig deeper into Futon by clicking on on a document, and you'll be forwarded to the document detail.
This data should look familiar! All of our keys are listed on the left, and the values are listed on the right.
- 軟件安全技術
- C++程序設計(第3版)
- Learn to Create WordPress Themes by Building 5 Projects
- Vue.js入門與商城開發實戰
- 面向STEM的Scratch創新課程
- JavaScript前端開發與實例教程(微課視頻版)
- YARN Essentials
- 數據結構(C語言)
- 速學Python:程序設計從入門到進階
- Regression Analysis with Python
- C語言程序設計習題與實驗指導
- Django 3.0應用開發詳解
- Python Linux系統管理與自動化運維
- iOS Development with Xamarin Cookbook
- Python程序設計教程