دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: 1
نویسندگان: Prabhu Eshwarla
سری:
ISBN (شابک) : 9781617298608, 1617298603
ناشر: Manning Publications
سال نشر: 2022
تعداد صفحات: 96
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 4 مگابایت
در صورت تبدیل فایل کتاب Rust Servers, Services, and Apps به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب سرورها، سرویس ها و برنامه ها 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