Cargando…

Getting Started with RethinkDB.

Absorb the knowledge required to utilize, manage, and deploy RethinkDB using Node.jsAbout This Book Make the most of this open source, scalable databaseRethinkDB to ease the construction of web applications Run powerful queries using ReQL, which is the most convenient language to manipulate JSON doc...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Tiepolo, Gianluca (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, Limited March 2016.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 4500
001 EBOOKCENTRAL_ocn951669272
003 OCoLC
005 20240329122006.0
006 m o d
007 cr |n|||||||||
008 160318e20160317enk o 000 0 eng d
040 |a COO  |b eng  |e pn  |c COO  |d EBLCP  |d HEBIS  |d CHVBK  |d OCLCO  |d OCLCF  |d DEBBG  |d FEM  |d IDB  |d OCLCQ  |d MERUC  |d OCLCQ  |d VT2  |d UOK  |d WYU  |d OCLCQ  |d LVT  |d UKAHL  |d UKMGB  |d OCLCQ  |d OCLCO  |d K6U  |d OCLCQ  |d OCLCO  |d OCLCL 
015 |a GBB650135  |2 bnb 
016 7 |a 017798708  |2 Uk 
019 |a 968034112  |a 969011049 
020 |a 9781785887604 
020 |a 1785887602  |q (Trade Paper) 
020 |a 9781785884467 
020 |a 1785884468 
024 3 |a 9781785887604 
029 1 |a AU@  |b 000062539888 
029 1 |a AU@  |b 000067097206 
029 1 |a CHNEW  |b 000884524 
029 1 |a CHVBK  |b 374432244 
029 1 |a DEBBG  |b BV043893448 
029 1 |a UKMGB  |b 017798708 
035 |a (OCoLC)951669272  |z (OCoLC)968034112  |z (OCoLC)969011049 
037 |b 01201872 
050 4 |a QA76.9.D3 
082 1 4 |a [E] 
049 |a UAMI 
100 1 |a Tiepolo, Gianluca,  |e author. 
245 1 0 |a Getting Started with RethinkDB. 
260 |a Birmingham :  |b Packt Publishing, Limited  |c March 2016. 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
520 8 |a Absorb the knowledge required to utilize, manage, and deploy RethinkDB using Node.jsAbout This Book Make the most of this open source, scalable databaseRethinkDB to ease the construction of web applications Run powerful queries using ReQL, which is the most convenient language to manipulate JSON documents with Develop fully-fledged real-time web apps using Node.js and RethinkDBWho This Book Is ForGetting Started with RethinkDB is ideal for developers who are new to RethinkDB and need a practical understanding to start working with it. No previous knowledge of database programming is required, although a basic knowledge of JavaScript or Node.js would be helpful. What You Will Learn Download and install the database on your system Configure RethinkDB's settings and start using the web interface Import data into RethinkDB Run queries using the ReQL language Create shards, replicas, and RethinkDB clusters Use an index to improve database performance Get to know all the RethinkDB deployment techniquesIn DetailRethinkDB is a high-performance document-oriented database with a unique set of features. This increasingly popular NoSQL database is used to develop real-time web applications and, together with Node.js, it can be used to easily deploy them to the cloud with very little difficulty. Getting Started with RethinkDB is designed to get you working with RethinkDB as quickly as possible. Starting with the installation and configuration process, you will learn how to start importing data into the database and run simple queries using the intuitive ReQL query language. After successfully running a few simple queries, you will be introduced to other topics such as clustering and sharding. You will get to know how to set up a cluster of RethinkDB nodes and spread database load across multiple machines. We will then move on to advanced queries and optimization techniques. You will discover how to work with RethinkDB from a Node.js environment and find out all about deployment techniques. Finally, we'll finish by working on a fully-fledged example that uses the Node.js framework and advanced features such as Changefeeds to develop a real-time web application. Style and approachThis is a step-by-step book that provides a practical approach to RethinkDB programming, and is explained in a conversational, easy-to-follow style. 
505 0 |a Cover -- Copyright -- Credits -- About the Author -- Acknowledgement -- About the Reviewer -- www.PacktPub.com -- Table of Contents -- Preface -- Chapter 1: Introducing RethinkDB -- Rethinking the database -- Changefeeds -- Horizontal scalability -- Powerful query language -- Developer-oriented -- Document-oriented -- Lock-free architecture -- Immediate consistency -- Secondary indexes -- Distributed joins -- Installing RethinkDB -- Installing RethinkDB on Ubuntu/Debian Linux -- Installing RethinkDB on CentOS and Fedora -- Installing RethinkDB on OS X -- Installing RethinkDB using Homebrew -- Building RethinkDB from source -- Configuring RethinkDB -- Running as a daemon -- Creating a configuration file -- Starting RethinkDB -- Running a query -- Summary -- Chapter 2: The ReQL Query Language -- Documents -- Document databases -- JSON document format -- Keys -- Arrays -- Embedded documents -- Data modeling -- Introducing ReQL -- An explicit query language -- Building a query -- Inserting data -- Batch inserts -- Reading data -- Filtering results -- Manipulating results -- Updating data -- Updating existing attributes -- Adding new attributes -- Deleting data -- Removing all documents -- Deleting a table -- Deleting a database -- Summary -- Chapter 3: Clustering, Sharding, and Replication -- An introduction to scaling -- What kind of system is it? -- Scaling reads -- Scaling writes -- Scaling data -- Clustering RethinkDB -- Creating a cluster -- Adding a server to the cluster -- Running queries on the cluster -- Replication -- Adding a secondary replica -- Failover -- Sharding -- Sharding a table -- Summary -- Chapter 4: Performance Tuning and Advanced Queries -- Performance tuning -- Increasing the cache size -- Increasing concurrency -- Using soft durability mode -- Bulk data import -- Introducing indexing -- Evaluating query performance. 
505 8 |a Creating and using an index -- Compound indexes -- Advanced queries -- Limits, skips, and sorts -- The limit command -- The skip command -- Sorting documents -- Finding a random document -- Grouping -- Aggregations -- Average -- Maximum -- The pluck command -- Summary -- Chapter 5: Programming RethinkDB in Node.js -- Introducing Node.js -- An increasingly popular technology -- An event-driven design -- Installing Node.js -- Installing on Linux -- Installing on Mac OS X -- Running Node.js -- Installing the RethinkDB module -- Connecting to RethinkDB -- Running a simple query -- Inserting documents -- Reading documents -- Updating and deleting documents -- Introducing Changefeeds -- A simple example using Changefeeds -- Summary -- Chapter 6: RethinkDB Administration and Deployment -- RethinkDB administration tools -- Backing up your data -- Backing up a single table -- Setting up automatic backups -- Restoring your data -- Securing RethinkDB -- Securing the web interface -- Securing the driver port -- Monitoring RethinkDB -- Monitoring issues -- Monitoring running jobs -- Deploying RethinkDB -- Summary -- Chapter 7: Developing Real-Time Web Applications -- Introducing real-time web applications -- Examples of real-time web apps -- Going real time on the Web -- Polling -- AJAX -- WebSockets -- Developing web applications with Node.js -- Express.js -- Routing -- Templating -- Socket.io -- Using RethinkDB in Node.js web applications -- Database polling -- Message queues -- Changefeeds -- Your first real-time web application -- Structuring the Notes web application -- Creating the Node.js server -- Configuring the router -- Writing the application logic -- Interacting with RethinkDB -- Implementing Changefeeds -- Programming Socket.io -- Programming the frontend -- The view -- Running our web application -- Summary -- Index. 
590 |a ProQuest Ebook Central  |b Ebook Central Academic Complete 
650 0 |a Internet programming. 
650 6 |a Programmation Internet. 
650 7 |a Internet programming  |2 fast 
655 4 |a Databases; Programming Languages; Online Services. 
758 |i has work:  |a Getting Started with RethinkDB (Text)  |1 https://id.oclc.org/worldcat/entity/E39PD3WQ8fxDQbMvPJBPGbRP6X  |4 https://id.oclc.org/worldcat/ontology/hasWork 
776 0 8 |i Erscheint auch als:  |n Druck-Ausgabe  |t Tiepolo, Gianluca. Getting Started with RethinkDB 
856 4 0 |u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4520682  |z Texto completo 
936 |a BATCHLOAD 
938 |a Askews and Holts Library Services  |b ASKH  |n AH30478343 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4520682 
994 |a 92  |b IZTAP