Cantitate/Preț
Produs

MongoDB and Python

Autor Niall O'Higgins
en Limba Engleză Paperback – noi 2011
"MongoDB and Python" is a cookbook-style text to help Python programmers work with MongoDB.
Citește tot Restrânge

Preț: 11045 lei

Preț vechi: 13805 lei
-20%

Puncte Express: 166

Carte tipărită la comandă

Livrare economică 25 iulie-08 august

Livrare prin curier în România Termenul estimat este afișat lângă disponibilitate.
Transport gratuit de la 40000 lei Plată online sau ramburs, în funcție de opțiunile comenzii.
Retur gratuit în 14 zile Comandă securizată și suport în română.

Specificații

ISBN-13: 9781449310370
ISBN-10: 1449310370
Pagini: 64
Dimensiuni: 182 x 240 x 10 mm
Greutate: 0.14 kg
Editura: O'Reilly

Cuprins

Preface;
Conventions Used in This Book;
Using Code Examples;
Safari® Books Online;
How to Contact Us;
Acknowledgments;
Chapter 1: Getting Started;
1.1 Introduction;
1.2 Finding Reference Documentation;
1.3 Installing MongoDB;
1.4 Running MongoDB;
1.5 Setting up a Python Environment with MongoDB;
Chapter 2: Reading and Writing to MongoDB with Python;
2.1 Connecting to MongoDB with Python;
2.2 Getting a Database Handle;
2.3 Inserting a Document into a Collection;
2.4 Write to a Collection Safely and Synchronously;
2.5 Guaranteeing Writes to Multiple Database Nodes;
2.6 Introduction to MongoDB Query Language;
2.7 Reading, Counting, and Sorting Documents in a Collection;
2.8 Updating Documents in a Collection;
2.9 Deleting Documents from a Collection;
2.10 MongoDB Query Operators;
2.11 MongoDB Update Modifiers;
Chapter 3: Common MongoDB and Python Patterns;
3.1 A Uniquely Document-Oriented Pattern: Embedding;
3.2 Fast Lookups: Using Indexes with MongoDB;
3.3 Location-based Apps with MongoDB: GeoSpatial Indexing;
3.4 Code Defensively to Avoid KeyErrors and Other Bugs;
3.5 Update-or-Insert: Upserts in MongoDB;
3.6 Atomic Read-Write-Modify: MongoDB's findAndModify;
3.7 Fast Accounting Pattern;
Chapter 4: MongoDB with Web Frameworks;
4.1 Pylons 1.x and MongoDB;
4.2 Pyramid and MongoDB;
4.3 Django and MongoDB;
4.4 Going Further;