• Complain

Daniel Nichter - Efficient MySQL Performance: Best Practices and Techniques

Here you can read online Daniel Nichter - Efficient MySQL Performance: Best Practices and Techniques full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2021, publisher: OReilly Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Daniel Nichter Efficient MySQL Performance: Best Practices and Techniques
  • Book:
    Efficient MySQL Performance: Best Practices and Techniques
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2021
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Efficient MySQL Performance: Best Practices and Techniques: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Efficient MySQL Performance: Best Practices and Techniques" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Youll find several books on basic or advanced MySQL performance, but nothing in between. Thats because explaining MySQL performance without addressing its complexity is difficult. This practical book bridges the gap by teaching software engineers mid-level MySQL knowledge beyond the fundamentals, but well shy of deep-level internals required by database administrators (DBAs).

Daniel Nichter shows you how to apply the best practices and techniques that directly affect MySQL performance. Youll learn how to improve performance by analyzing query execution, indexing for common SQL clauses and table joins, optimizing data access, and understanding the most important MySQL metrics. Youll also discover how replication, transactions, row locking, and the cloud influenceMySQL performance.

  • Understand why query response time is the North Star of MySQL performance
  • Learn query metrics in detail, including aggregation, reporting, and analysis
  • See how to index effectively for common SQL clauses and table joins
  • Explore the most important server metrics and what they reveal about performance
  • Dive into transactions and row locking to gain deep, actionable insight
  • Achieve remarkable MySQL performance at any scale

Daniel Nichter: author's other books


Who wrote Efficient MySQL Performance: Best Practices and Techniques? Find out the surname, the name of the author of the book and a list of all author's works by series.

Efficient MySQL Performance: Best Practices and Techniques — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Efficient MySQL Performance: Best Practices and Techniques" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Efficient MySQL Performance by Daniel Nichter Copyright 2022 Daniel Nichter - photo 1
Efficient MySQL Performance

by Daniel Nichter

Copyright 2022 Daniel Nichter. All rights reserved.

Printed in the United States of America.

Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://oreilly.com). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com .

  • Acquisitions Editor: Andy Kwan
  • Development Editor: Corbin Collins
  • Production Editor: Katherine Tozer
  • Copyeditor: Justin Billing
  • Proofreader: Piper Editorial Consulting, LLC
  • Indexer: Amnet Systems LLC
  • Interior Designer: David Futato
  • Cover Designer: Karen Montgomery
  • Illustrator: Kate Dullea
  • December 2021: First Edition
Revision History for the First Edition
  • 2021-11-30: First Release

See http://oreilly.com/catalog/errata.csp?isbn=9781098105099 for release details.

The OReilly logo is a registered trademark of OReilly Media, Inc. Efficient MySQL Performance, the cover image, and related trade dress are trademarks of OReilly Media, Inc.

The views expressed in this work are those of the author, and do not represent the publishers views. While the publisher and the author have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

978-1-098-10509-9

[LSI]

Preface

A gap in MySQL literature exists between basic MySQL knowledge and advanced MySQL performance.There are several books about the former, and one book about the latter: High Performance MySQL, 4th Edition, by Silvia Botros and Jeremy Tinley (OReilly).This is the first book to bridge the gap.

The gap exists because MySQL is complex, and its difficult to teach performance without addressing that complexitythe proverbial elephant in the room.But engineers using (not managing) MySQL should not need to become MySQL experts to achieve remarkable MySQL performance.To bridge the gap, this book is unapologetically efficientpay no attention to the elephant; its friendly.

Efficient MySQL performance means focus: learning and applying only the best practices and techniques that directly affect remarkable MySQL performance.Focus dramatically narrows the scope of MySQL complexity and allows me to show you a much simpler and faster path through the vast and complex field of MySQL performance.The journey begins with the first sentence of , Performance is query response time.From there, we move fast through indexes, data, access patterns, and a lot more.

On a scale of one to fivewhere one is an introduction for anyone, and five is a deep dive for aspiring expertsthis book ranges from three to four: deep, but far from the bottom.I presume that youre an experienced engineer who has basic knowledge of and experience with a relational database (MySQL or otherwise), so I do not explain SQL or database fundamentals.I presume that youre an accomplished programmer who is responsible for one or more applications that use MySQL, so I continually reference the application and trust that you know the details of your application.I also presume that youre familiar with computers in general, so I talk freely about hardware, software, networks, and so forth.

Since this book focuses on MySQL performance for engineers using MySQL, not managing it, a few references to MySQL configuration are made when necessary but not explained.For help configuring MySQL, ask a DBA where you work.If you dont have a DBA, hire a MySQL consultantthere are many great consultants with affordable contract options.You can also learn by reading the MySQL Reference Manual.The MySQL manual is superb and experts use it all the time, so youre in good company.

Conventions Used in This Book

The following typographical conventions are used in this book:

Italic

Indicates new terms, URLs, email addresses, filenames, and file extensions.

Constant width

Used for program listings, as well as within paragraphs to refer to program elements such as variable or function names, databases, data types, environment variables, statements, and keywords.

Constant width bold

Shows commands or other text that should be typed literally by the user.

Constant width italic

Shows text that should be replaced with user-supplied values or by values determined by context.

Tip

This element signifies a tip or suggestion.

Note

This element signifies a general note.

Warning

This element indicates a warning or caution.

Using Code Examples

Supplemental material (code examples, exercises, etc.) is available for download at https://github.com/efficient-mysql-performance.

If you have a technical question or a problem using the code examples, please email .

This book is here to help you get your job done. In general, if example code is offered with this book, you may use it in your programs and documentation. You do not need to contact us for permission unless youre reproducing a significant portion of the code. For example, writing a program that uses several chunks of code from this book does not require permission. Selling or distributing examples from OReilly books does require permission. Answering a question by citing this book and quoting example code does not require permission. Incorporating a significant amount of example code from this book into your products documentation does require permission.

We appreciate, but generally do not require, attribution. An attribution usually includes the title, author, publisher, and ISBN. For example: Efficient MySQL Performance by Daniel Nichter (OReilly). Copyright 2022 Daniel Nichter, 978-1-098-10509-9.

If you feel your use of code examples falls outside fair use or the permission given above, feel free to contact us at .

OReilly Online Learning
Note

For more than 40 years, OReilly Media has provided technology and business training, knowledge, and insight to help companies succeed.

Our unique network of experts and innovators share their knowledge and expertise through books, articles, and our online learning platform. OReillys online learning platform gives you on-demand access to live training courses, in-depth learning paths, interactive coding environments, and a vast collection of text and video from OReilly and 200+ other publishers. For more information, visit http://oreilly.com.

How to Contact Us

Please address comments and questions concerning this book to the publisher:

  • OReilly Media, Inc.
  • 1005 Gravenstein Highway North
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Efficient MySQL Performance: Best Practices and Techniques»

Look at similar books to Efficient MySQL Performance: Best Practices and Techniques. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Efficient MySQL Performance: Best Practices and Techniques»

Discussion, reviews of the book Efficient MySQL Performance: Best Practices and Techniques and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.