SØG - mellem flere end 8 millioner bøger:

Søg på: Titel, forfatter, forlag - gerne i kombination.
Eller blot på isbn, hvis du kender dette.

Viser: Enterprise Rails

Enterprise Rails, 1. udgave
Søgbar e-bog

Enterprise Rails Vital Source e-bog

Dan Chak
(2008)
O'Reilly Media, Inc
348,00 kr.
Leveres umiddelbart efter køb
Enterprise Rails

Enterprise Rails

Dan Chak
(2008)
Sprog: Engelsk
O'Reilly Media, Incorporated
399,00 kr.
ikke på lager, Bestil nu og få den leveret
om ca. 10 hverdage

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Fixed pages): 352 sider
  • Udgiver: O'Reilly Media, Inc (Oktober 2008)
  • ISBN: 9780596803292
What does it take to develop an enterprise application with Rails? Enterprise Rails introduces several time-tested software engineering principles to prepare you for the challenge of building a high-performance, scalable website with global reach. You'll learn how to design a solid architecture that ties the many parts of an enterprise website together, including the database, your servers and clients, and other services as well. Many Rails developers think that planning for scale is unnecessary. But there's nothing worse than an application that fails because it can't handle sudden success. Throughout this book, you'll work on an example enterprise project to learn first-hand what's involved in architecting serious web applications. With this book, you will: Tour an ideal enterprise systems layout: how Rails fits in, and which elements don't rely on Rails Learn to structure a Rails 2.0 application for complex websites Discover how plugins can support reusable code and improve application clarity Build a solid data model -- a fortress -- that protects your data from corruption Base an ActiveRecord model on a database view, and build support for multiple table inheritance Explore service-oriented architecture and web services with XML-RPC and REST See how caching can be a dependable way to improve performance Building for scale requires more work up front, but you'll have a flexible website that can be extended easily when your needs change. Enterprise Rails teaches you how to architect scalable Rails applications from the ground up. "Enterprise Rails is indispensable for anyone planning to build enterprise web services. It's one thing to get your service off the ground with a framework like Rails, but quite another to construct a system that will hold up at enterprise scale. The secret is to make good architectural choices from the beginning. Chak shows you how to make those choices. Ignore his advice at your peril."-- Hal Abelson, Prof. of Computer Science and Engineering, MIT
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: 10 sider kan printes ad gangen
Copy: højest 10 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • Paperback: 350 sider
  • Udgiver: O'Reilly Media, Incorporated (Oktober 2008)
  • ISBN: 9780596515201

What does it take to develop an enterprise application with Rails? Enterprise Rails introduces several time-tested software engineering principles to prepare you for the challenge of building a high-performance, scalable website with global reach. You'll learn how to design a solid architecture that ties the many parts of an enterprise website together, including the database, your servers and clients, and other services as well.

Many Rails developers think that planning for scale is unnecessary. But there's nothing worse than an application that fails because it can't handle sudden success. Throughout this book, you'll work on an example enterprise project to learn first-hand what's involved in architecting serious web applications.

With this book, you will:

  • Tour an ideal enterprise systems layout: how Rails fits in, and which elements don't rely on Rails
  • Learn to structure a Rails 2.0 application for complex websites
  • Discover how plugins can support reusable code and improve application clarity
  • Build a solid data model -- a fortress -- that protects your data from corruption
  • Base an ActiveRecord model on a database view, and build support for multiple table inheritance
  • Explore service-oriented architecture and web services with XML-RPC and REST
  • See how caching can be a dependable way to improve performance

Building for scale requires more work up front, but you'll have a flexible website that can be extended easily when your needs change. Enterprise Rails teaches you how to architect scalable Rails applications from the ground up.

"Enterprise Rails is indispensable for anyone planning to build enterprise web services. It's one thing to get your service off the ground with a framework like Rails, but quite another to construct a system that will hold up at enterprise scale. The secret is to make good architectural choices from the beginning. Chak shows you how to make those choices. Ignore his advice at your peril."-- Hal Abelson, Prof. of Computer Science and Engineering, MIT

Preface; The Tale of Twitter; Speed Versus Scalability; What to Expect in This Book; Conventions Used in This Book; Using Code Examples; Safari® Books Online; Comments and Questions; Acknowledgments;
Chapter 1: The Big Picture;
1.1 What Is Enterprise?;
1.2 Growing Slowly;
1.3 Understanding All the Pieces;
Chapter 2: Organizing with Plugins;
2.1 Benefits;
2.2 Writing Your Own Plugins;
2.3 Deployment;
Chapter 3: Organizing with Modules;
3.1 Files and Directories;
3.2 Module Boundaries for Namespacing;
3.3 Exercises;
3.4 Refactor Steps;
Chapter 4: Database As a Fortress;
4.1 Your Database Is an Application, Too;
4.2 Sit Atop the Shoulders of Giants;
4.3 Operations and Reporting;
Chapter 5: Building a Solid Data Model;
5.1 Theatre Tickets;
Chapter 6: Refactoring to Third Normal Form;
6.1 Third Normal Form;
6.2 Refactoring: Inheritance and Mixins;
6.3 Exercises;
6.4 Refactor Steps;
Chapter 7: Domain Data;
7.1 Dealing with Zip Codes;
7.2 Strategy Pattern with Domain Tables;
7.3 Refactor from Day One;
Chapter 8: Composite Keys and Domain Key/Normal Form;
8.1 Why Composite Natural Keys Matter;
8.2 Atop the Shoulders of...;
8.3 Exercises;
8.4 Refactor Steps;
Chapter 9: Guaranteeing Complex Relationships with Triggers;
9.1 Constraint Checking with Triggers;
Chapter 10: Multiple Table Inheritance;
10.1 The Problem;
10.2 What Is Polymorphism?;
10.3 Inheritance and Persistence;
10.4 Factory Classes;
10.5 Exercises;
10.6 Refactor Steps;
Chapter 11: View-Backed Models;
11.1 Database Views;
11.2 Basing a Model on a View;
11.3 Considerations;
11.4 Exercises;
11.5 Refactor Steps;
Chapter 12: Materialized Views;
12.1 Materialized View Principles;
12.2 A View to Materialize;
12.3 The Target Table;
12.4 Refresh and Invalidation Functions;
12.5 Triggered Refreshes and Invalidations;
12.6 Hiding the Implementation with the Reconciler View;
12.7 Cache Indexes;
12.8 Results;
12.9 Cascading Caches;
12.10 Exercises;
Chapter 13: SOA Primer;
13.1 What Is SOA?;
13.2 Why SOA?;
13.3 Exercises;
Chapter 14: SOA Considerations;
14.1 Service Considerations;
14.2 API Design Best Practices;
14.3 REST Versus XML-RPC Versus SOAP;
Chapter 15: An XML-RPC Service;
15.1 ActionWebService and Rails
2.0;
15.2 Creating an Abstraction Barrier;
15.3 More Testing;
15.4 The Client Plugin;
Chapter 16: Refactoring to Services;
16.1 An Orders Service;
16.2 Integrating with the MoviesService;
16.3 MoviesService Object Model;
16.4 Putting It All Together;
Chapter 17: REST Primer;
17.1 REST Basics;
17.2 Mapping REST to SOA;
Chapter 18: A RESTful Web Service;
18.1 Scoping the Problem;
18.2 MoviesWebService;
Chapter 19: Caching End to End;
19.1 Data Layer Caching, Revisited;
19.2 Logical Model Caching;
19.3 Other Caching;Colophon;
De oplyste priser er inkl. moms

Senest sete

Polyteknisk Boghandel

har gennem mere end 50 år været studieboghandlen på DTU og en af Danmarks førende specialister i faglitteratur.

 

Vi lagerfører et bredt udvalg af bøger, ikke bare inden for videnskab og teknik, men også f.eks. ledelse, IT og meget andet.

Læs mere her


Trykt eller digital bog?

Ud over trykte bøger tilbyder vi tre forskellige typer af digitale bøger:

 

Vital Source Bookshelf: En velfungerende ebogsplatform, hvor bogen downloades til din computer og/eller mobile enhed.

 

Du skal bruge den gratis Bookshelf software til at læse læse bøgerne - der er indbygget gode værktøjer til f.eks. søgning, overstregning, notetagning mv. I langt de fleste tilfælde vil du samtidig have en sideløbende 1825 dages online adgang. Læs mere om Vital Source bøger

 

Levering: I forbindelse med købet opretter du et login. Når du har installeret Bookshelf softwaren, logger du blot ind og din bog downloades automatisk.

 

 

Adobe ebog: Dette er Adobe DRM ebøger som downloades til din lokale computer eller mobil enhed.

 

For at læse bøgerne kræves særlig software, som understøtter denne type. Softwaren er gratis, men du bør sikre at du har rettigheder til installere software på den maskine du påtænker at anvende den på. Læs mere om Adobe DRM bøger

 

Levering: Et download link sendes pr email umiddelbart efter købet.

 


Ibog: Dette er en online bog som kan læses på udgiverens website. 

Der kræves ikke særlig software, bogen læses i en almindelig browser.

 

Levering: Vores medarbejder sender dig en adgangsnøgle pr email.

 

Vi gør opmærksom på at der ikke er retur/fortrydelsesret på digitale varer.