- 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.
- 程序員修煉之道:程序設計入門30講
- GraphQL學習指南
- Android Studio Essentials
- Clojure for Domain:specific Languages
- Python Deep Learning
- Linux網絡程序設計:基于龍芯平臺
- Cassandra Data Modeling and Analysis
- Learning Python Design Patterns(Second Edition)
- C語言從入門到精通
- INSTANT Yii 1.1 Application Development Starter
- C語言程序設計實訓教程與水平考試指導
- BeagleBone Robotic Projects(Second Edition)
- Python自然語言理解:自然語言理解系統(tǒng)開發(fā)與應用實戰(zhàn)
- Visual C++開發(fā)寶典
- C語言從入門到精通