Cargando…

Getting started with RethinkDB : absorb the knowledge required to utilize, manage, and deploy RethinkDB using Node.js /

Annotation

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

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn945736478
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 160331s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCF  |d OCLCQ  |d YDXCP  |d IDEBK  |d NLE  |d KSU  |d DEBSZ  |d DEBBG  |d C6I  |d OCLCQ  |d CEF  |d N$T  |d AGLDB  |d IGB  |d AUW  |d BTN  |d INTCL  |d MHW  |d SNK  |d RDF  |d OCLCO  |d OCLCQ  |d QGK  |d OCLCO 
019 |a 945564284  |a 945567080  |a 1259201599 
020 |a 9781785884467  |q (electronic bk.) 
020 |a 1785884468  |q (electronic bk.) 
020 |z 9781785887604 
020 |z 1785887602 
029 1 |a DEBSZ  |b 480364958 
029 1 |a DEBBG  |b BV043969133 
029 1 |a DEBSZ  |b 485796473 
029 1 |a GBVCP  |b 88284914X 
029 1 |a AU@  |b 000058630311 
035 |a (OCoLC)945736478  |z (OCoLC)945564284  |z (OCoLC)945567080  |z (OCoLC)1259201599 
050 4 |a QA76.9.D3 
072 7 |a COM  |x 021000  |2 bisacsh 
082 0 4 |a 005.758  |2 23 
049 |a UAMI 
100 1 |a Tiepolo, Gianluca,  |e author. 
245 1 0 |a Getting started with RethinkDB :  |b absorb the knowledge required to utilize, manage, and deploy RethinkDB using Node.js /  |c Gianluca Tiepolo. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource (1 volume) :  |b illustrations. 
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 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from cover page (Safari, viewed March 30, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b 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 
505 8 |a Configuring RethinkDBRunning 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 
505 8 |a Chapter 3: Clustering, Sharding, and ReplicationAn 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; Creating and using an index 
505 8 |a Compound indexesAdvanced 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 
505 8 |a Introducing ChangefeedsA 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 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Node.js. 
630 0 7 |a Node.js  |2 fast 
650 0 |a Database management. 
650 0 |a Application software  |x Development. 
650 6 |a Bases de données  |x Gestion. 
650 6 |a Logiciels d'application  |x Développement. 
650 7 |a COMPUTERS / Databases / General.  |2 bisacsh 
650 7 |a Application software  |x Development  |2 fast 
650 7 |a Database management  |2 fast 
776 |z 1-78588-760-2 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1203014  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785887604/?ar  |z Texto completo 
938 |a YBP Library Services  |b YANK  |n 12900408 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34185700 
938 |a EBSCOhost  |b EBSC  |n 1203014 
994 |a 92  |b IZTAP