Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Getting Started with RethinkDB

You're reading from  Getting Started with RethinkDB

Product type Book
Published in Mar 2016
Publisher Packt
ISBN-13 9781785887604
Pages 176 pages
Edition 1st Edition
Languages
Author (1):
Gianluca Tiepolo Gianluca Tiepolo
Profile icon Gianluca Tiepolo

Table of Contents (15) Chapters

Getting Started with RethinkDB
Credits
About the Author
Acknowledgement
About the Reviewer
www.PacktPub.com
Preface
1. Introducing RethinkDB 2. The ReQL Query Language 3. Clustering, Sharding, and Replication 4. Performance Tuning and Advanced Queries 5. Programming RethinkDB in Node.js 6. RethinkDB Administration and Deployment 7. Developing Real-Time Web Applications Index

Creating and using an index


As you have learned, the previous query requires a table scan; that is, RethinkDB had to look through the name field in every document. Indexes are a great way to fix queries such as this because they organize data by a given field to let RethinkDB find it quickly.

Our test query uses the name field, so we will now create a simple index on that field.

The quickest way to create an index in RethinkDB is using the web interface.

First, select the people table from the Tables tab, and then click on the Create a new secondary index link. Enter the name of the field on which you wish to create the index. In our example, this is the name field:

When you click on Create, RethinkDB will begin creating the desired index. Depending on your system and how large your dataset is, creating an index may take a few seconds:

When the index is ready to use, you will see a screen similar to this one:

Congratulations! You've just created your very first index.

Now, it's time to use it in...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}