ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Rust Servers, Services, and Apps

دانلود کتاب سرورها، سرویس ها و برنامه ها Rust

Rust Servers, Services, and Apps

مشخصات کتاب

Rust Servers, Services, and Apps

ویرایش: 1 
نویسندگان:   
سری:  
ISBN (شابک) : 9781617298608, 1617298603 
ناشر: Manning Publications 
سال نشر: 2022 
تعداد صفحات: 96 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 4 مگابایت 

قیمت کتاب (تومان) : 52,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 17


در صورت تبدیل فایل کتاب Rust Servers, Services, and Apps به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب سرورها، سرویس ها و برنامه ها Rust نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب سرورها، سرویس ها و برنامه ها Rust



Rust Servers, Services, and Apps راهنمای عملی برای توسعه برنامه های کاربردی وب توزیع شده مدرن با Rust است. شما یاد خواهید گرفت که چگونه سرویس های کارآمد بسازید، سرورهای وب سفارشی بنویسید، و حتی برنامه های تمام پشته را در Rust بسازید.


با استفاده از Rust برای شروع کار با پایه شروع خواهید کرد. یک سرور HTTP و API RESTful بسازید که با بازسازی بدون ترس آن را ایمن کنید، اشکال زدایی کنید و تکامل دهید. سپس Rust را برای توسعه یک سرویس فروشگاه دیجیتال و یک برنامه کاربردی تک صفحه ای در سمت مشتری قرار می دهید. این کتاب پرسرعت مملو از نمونه‌های کدی است که می‌توانید با پروژه‌های خود تطبیق دهید، و حاشیه‌نویسی‌های دقیق برای کمک به درک نحوه عملکرد Rust در زیر کاپوت.

درباره فناوری
زبان فوق العاده سریع، ایمن و کارآمد Rust به مدت پنج سال متوالی در نظرسنجی StackOverflow به عنوان "محبوب ترین" انتخاب شده است. فهمیدن دلیل آن آسان است. Rust همه ویژگی‌های یک زبان مدرن را با قدرت تأخیر کم C ترکیب می‌کند. کارایی آن باعث کاهش ردپای زمان اجرا شما و صورت‌حساب‌های میزبانی ابری شما می‌شود و انعطاف‌پذیری آن به شما امکان می‌دهد برنامه‌های شبکه و برنامه‌های سطح بالا را با سهولت بنویسید.< /p>


توضیحاتی درمورد کتاب به خارجی

Rust Servers, Services, and Apps is a hands-on guide to developing modern distributed web applications with Rust. You’ll learn how to build efficient services, write custom web servers, and even build full stack applications end-to-end in Rust.


You’ll start with the foundations, using Rust to build an HTTP server, and RESTful API that you’ll secure, debug, and evolve with fearless refactoring. You’ll then put Rust through its paces to develop a digital storefront service, and a single-page client-side application. This fastpaced book is packed with code samples you can adapt to your own projects, and detailed annotations to help you understand how Rust works under the hood.

About the technology
The blazingly fast, safe, and efficient Rust language has been voted “most loved” for five consecutive years on the StackOverflow survey. It’s easy to see why. Rust combines all the features of a modern language with the low-latency power of C. Its efficiency will slash your runtime footprint―and your cloud hosting bills―and its flexibility lets you write network programs and high-level applications with equal ease.



فهرست مطالب

Rust Servers, Services, and Apps MEAP V01\nCopyright\nWelcome\nBrief contents\nChapter 1: Why Rust for web applications?\n	1.1 Introduction to modern web applications\n	1.2 Choosing Rust for web applications\n		1.2.1 Characteristics of web applications \n		1.2.2 Benefits of Rust for web applications\n	1.3 Visualizing the example application\n		1.3.1 What will be build?\n		1.3.2 Technical guidelines for the example application\n	1.4 Summary\nChapter 2: Writing a basic web server from scratch\n	2.1 Writing a TCP server in Rust\n		2.1.1 Designing the TCP/IP communication flow\n		2.1.2 Writing the TCP server and client\n	2.2 Writing an HTTP server in Rust\n		2.2.1 Parsing HTTP request messages\n		2.2.2 Constructing HTTP response messages\n		2.2.3 Writing the main() function and server module\n		2.2.4 Writing the router and handler modules\n		2.2.5 Testing the web server\n	2.3 Summary\nChapter 3: Building a RESTful Web Service\n	3.1 Getting started with Actix\n		3.1.1 Writing the first REST API\n		3.1.2 Understanding Actix concepts\n	3.2 Building web APIs with REST\n		3.2.1 Define project scope and structure\n		3.2.2 Define and manage application state\n		3.2.3 Defining the data model\n		3.2.4 Post a course\n		3.2.5 Get all courses for a tutor\n		3.2.6 Get details of a single course\n	3.3 Summary




نظرات کاربران