|
|
|
|
LEADER |
00000cam a2200000Ia 4500 |
001 |
OR_ocn754641912 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr unu|||||||| |
008 |
110926s2011 cau o 000 0 eng d |
040 |
|
|
|a UMI
|b eng
|e pn
|c UMI
|d CUS
|d COO
|d UKMGB
|d C6I
|d OCLCQ
|d DEBSZ
|d NLE
|d OCLCF
|d IDEBK
|d LLB
|d BTCTA
|d EBLCP
|d N$T
|d TEFOD
|d YDXCP
|d VT2
|d TEFOD
|d OCLCQ
|d FEM
|d OCLCQ
|d BRL
|d CEF
|d AU@
|d UAB
|d OCLCQ
|d UKAHL
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|
016 |
7 |
|
|a 015963544
|2 Uk
|
019 |
|
|
|a 741540511
|a 747580883
|a 775301777
|a 803522909
|a 968114880
|a 969044873
|
020 |
|
|
|a 1449305040
|
020 |
|
|
|a 9781449305048
|
020 |
|
|
|a 9781449315962
|q (electronic bk.)
|
020 |
|
|
|a 1449315968
|q (electronic bk.)
|
020 |
|
|
|a 9781449315412
|q (electronic bk.)
|
020 |
|
|
|a 1449315410
|q (electronic bk.)
|
020 |
|
|
|a 9781449311353
|
020 |
|
|
|a 1449311350
|
020 |
|
|
|z 9781449305048
|
029 |
1 |
|
|a AU@
|b 000062617204
|
029 |
1 |
|
|a DEBSZ
|b 368475042
|
029 |
1 |
|
|a DEBSZ
|b 397133111
|
029 |
1 |
|
|a HEBIS
|b 291542034
|
035 |
|
|
|a (OCoLC)754641912
|z (OCoLC)741540511
|z (OCoLC)747580883
|z (OCoLC)775301777
|z (OCoLC)803522909
|z (OCoLC)968114880
|z (OCoLC)969044873
|
037 |
|
|
|a CL0500000113
|b Safari Books Online
|
037 |
|
|
|a E9B0808F-927C-4BA0-B230-B92181E30279
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.9.D37
|b M33 2011
|
072 |
|
7 |
|a COM
|x 021000
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 084010
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 030000
|2 bisacsh
|
082 |
0 |
4 |
|a 005.745
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Macedo, Tiago.
|
245 |
1 |
0 |
|a Redis cookbook /
|c Tiago Macedo and Fred Oliveira.
|
250 |
|
|
|a 1st ed.
|
260 |
|
|
|a Sebastopol, CA :
|b O'Reilly,
|c 2011.
|
300 |
|
|
|a 1 online resource (xii, 55 pages)
|
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
|2 rda
|
588 |
0 |
|
|a Online resource; title from title screen (Safari, viewed Dec. 5, 2011).
|
520 |
8 |
|
|a Annotation
|b Two years since its initial release, Redis already has an impressive list of adopters, including Engine Yard, GitHub, Craigslist, and Digg. This open source data structure server is built for speed and flexibility, making it ideal for many applications. If you're using Redis, or considering it, this concise cookbook provides recipes for a variety of issues you're likely to face. Each recipe solves a specific problem, and provides an in-depth discussion of how the solution works. Youll discover that Redis, while simple in nature, offers extensive functionality for manipulating and storing data. Learn when it makes sense to use RedisExplore several methods for installing RedisConnect to Redis in a number of ways, ranging from the command line to popular languages such as Python and RubySolve a range of needs, from linked datasets to analyticsHandle backups, sharding, datasets larger than available memory, and many other tasks.
|
505 |
0 |
|
|a Table of Contents; Preface; Introduction; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgements; Chapter 1. An Introduction to Redis; When to use Redis; Problem; Solution; Are your application and data a good fit for NoSQL?; Don't believe the hype; Installing Redis; Problem; Solution; Discussion; Compiling From Source; Installing on Linux; Installing on Windows; Installing on Mac OS X; Installing through MacPorts; Installing through Homebrew; Using Redis Data Types; Problem; Solution; Discussion; Strings; Lists; Hashes.
|
505 |
8 |
|
|a Sets and Sorted SetsChapter 2. Clients; Using Redis from the Command Line; Problem; Solution; Discussion; Using Redis from Python with redis-py; Problem; Solution; Discussion; Using Redis from Ruby with redis-rb; Problem; Solution; Discussion; Using Redis with Ruby on Rails; Problem; Solution; Discussion; Adding Redis functionality to ActiveRecord models; Chapter 3. Leveraging Redis; Using Redis as a Key/Value Store; Problem; Solution; Discussion; Storing application usage counters; Storing object data in hashes; Storing user "Circles" using sets; Inspecting Your Data; Problem; Solution.
|
505 |
8 |
|
|a DiscussionImplementing OAuth on Top of Redis; Problem; Solution; Discussion; Initial setup; Getting a request token; Redirections and consent; Exchanging the request token for an access token; API Access; Using Redis's Pub/Sub Functionality to Create a Chat System; Problem; Solution; Discussion; Installing the necessary software; Implementing the server side code; Implementing the client side code; Further improvements; Implementing an Inverted-Index Text Search with Redis; Problem; Solution; Discussion; Indexing; Searching; Scoring; Other improvements; Analytics and Time-Based Data; Problem.
|
505 |
8 |
|
|a SolutionDiscussion; Implementing a Job Queue with Redis; Problem; Solution; Discussion; Enqueueing; Dequeueing; Extending Redis; Problem; Solution; Discussion; Chapter 4. Redis Administration and Maintenance; Configuring Persistence; Problem; Solution; Discussion; Snapshotting; AOF; Starting a Redis Slave; Problem; Solution; Discussion; Handling a Dataset Larger Than Memory; Problem; Solution; Discussion; Upgrading Redis; Problem; Solution; Discussion; Backing up Redis; Problem; Solution; Discussion; Snapshotting; Append-Only Log (AOF); VM; Sharding Redis; Problem; Solution; Discussion.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a Data warehousing.
|
650 |
|
0 |
|a Database management.
|
650 |
|
0 |
|a Management information systems.
|
650 |
|
0 |
|a Open source software.
|
650 |
|
2 |
|a Management Information Systems
|
650 |
|
6 |
|a Entrepôts de données (Informatique)
|
650 |
|
6 |
|a Bases de données
|x Gestion.
|
650 |
|
6 |
|a Systèmes d'information de gestion.
|
650 |
|
6 |
|a Logiciels libres.
|
650 |
|
7 |
|a COMPUTERS
|x Database Management
|x General.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Desktop Applications
|x Databases.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x System Administration
|x Storage & Retrieval.
|2 bisacsh
|
650 |
|
7 |
|a Data warehousing
|2 fast
|
650 |
|
7 |
|a Database management
|2 fast
|
650 |
|
7 |
|a Management information systems
|2 fast
|
650 |
|
7 |
|a Open source software
|2 fast
|
700 |
1 |
|
|a Oliveira, Fred.
|
776 |
0 |
8 |
|i Print version:
|a Macedo, Tiago; Oliveria, Fred.
|t Redis Cookbook.
|d O'Reilly Media, Inc.; 2011
|z 9781449305048
|w (OCoLC)741540511
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781449311353/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH26902799
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH26903120
|
938 |
|
|
|a Baker and Taylor
|b BTCP
|n BK0010033174
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL769366
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis28417970
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7471021
|
994 |
|
|
|a 92
|b IZTAP
|