Giter VIP home page Giter VIP logo

jimmckeeth / delphi-high-performance Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gabr42/delphi-high-performance

1.0 0.0 0.0 34.59 MB

Delphi High Performance sample code by Primož Gabrijelčič, published by Packt

License: MIT License

Shell 0.01% Ruby 0.07% C++ 33.30% C 0.07% PHP 0.04% Common Lisp 0.02% Assembly 1.34% CSS 0.08% Pascal 29.27% Makefile 0.01% NewLisp 0.06% HTML 35.67% Batchfile 0.05% Roff 0.02%

delphi-high-performance's Introduction

Delphi High Performance

This is the code repository for Delphi High Performance, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Delphi is a cross-platform Integrated Development Environment (IDE) that supports rapid application development for Microsoft Windows, Apple Mac OS X, Google Android, iOS, and now Linux with RAD Studio 10.2. This book will be your guide to build efficient high Performance applications with Delphi.

The book begins by explaining you how to find performance bottlenecks and apply the correct algorithm to fix them. It will teach you how to improve your algorithms before taking you through Parallel programming and explore the various tools to build highly concurrent applications. You will then delve into improving the performance of your code and master the cross platform RTL improvements. Finally, this book will take you through memory management with Delphi and help you leverage the several external libraries to write better performing programs.

By the end of the book, you will be adept with the knowledge to create High Performance Applications with Delphi.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

There is no code in chapter 9.

The code will look like the following:

function IsPresentInList(strings: TStrings; const value: string): Boolean;
var
  i: Integer;
begin
  Result := False;
  for i := 0 to strings.Count - 1 do 
    if SameText(strings[i], value) then 
      Exit(True);
end;

Although you can read this book in bed or on the beach, you will need a computer and Delphi to play with the code examples. The code was written in Delphi 10.2 Tokyo, but it should also work without a problem in the older versions. I did use some modern features in demos—and dedicated a chapter to Parallel Programming Library that was introduced in Delphi XE7—so anything older than that is hit and miss.

This book does not refer to any functionality specific to the Enterprise edition. You'll be able to test all the code with the entry-level professional edition.

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.

delphi-high-performance's People

Contributors

jijom avatar

Stargazers

HappySoft di Marco Cirinei avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.