{"id":26930,"date":"2019-11-07T16:22:48","date_gmt":"2019-11-07T22:22:48","guid":{"rendered":"https:\/\/stackify.com\/?p=26930"},"modified":"2024-03-19T11:04:59","modified_gmt":"2024-03-19T11:04:59","slug":"what-is-an-iis-application-pool","status":"publish","type":"post","link":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/","title":{"rendered":"What Is an IIS Application Pool"},"content":{"rendered":"\n<p>People who are new to hosting web apps on IIS (Internet Information Services) sometimes struggle with the concept of application pools. What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.<\/p>\n\n\n\n<p>We\u2019ll begin by offering a brief introduction to IIS itself. If you\u2019re already well acquainted with this piece of software, then the first section isn\u2019t for you; feel free to skip it. Those of you who choose to read it will learn a bit about IIS and the role it plays in the Microsoft stack.<\/p>\n\n\n\n<p>After that, we\u2019ll proceed to cover the concept of \u201cpools\u201d in the tech world. If you\u2019re an IT professional\u2014especially in the field of software development\u2014you likely come across a reasonable number of \u201cpools\u201d in your day-to-day work, so it makes sense to define those as well.<\/p>\n\n\n\n<p>Then we get to the main point of the article: IIS application pools. You\u2019ll see the definition of the IIS application pool, understand its purpose, and learn details about the different types of pools.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A Brief Introduction to IIS<\/strong><\/h2>\n\n\n\n<p>IIS stands for Internet Information Services, as you\u2019ve seen in the introduction. Formerly known as \u201cInternet Information Server,\u201d IIS is a web server created by Microsoft.<\/p>\n\n\n\n<p>The paragraph above summarizes what IIS is. We could leave it at that and call it a day, if not for the \u201cweb server\u201d part. You see, \u201cweb server\u201d is a somewhat ambiguous term, because it can mean two different\u2014yet related\u2014things.<\/p>\n\n\n\n<p>\u201cWeb server\u201d can mean a computer (which can be both a physical machine or a virtualized computer. ) It can also mean a type of software that runs on said computer. Both the hardware and software varieties of the web servers are there for the same purpose: they take and reply to requests.<\/p>\n\n\n\n<p>Since Microsoft is\u2014or at least has been, for the most part of its history\u2014a software company, it shouldn\u2019t take you long to understand that IIS belongs to the \u201csoftware\u201d category of web servers. So, IIS is an application used to host and manage web applications\/websites on Windows. It was introduced back in 1995 as a free add-on for Windows NT 3.51, and it\u2019s been part of the Windows NT family since then.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"634\" height=\"950\" src=\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1557459325-b6733cbeae9c.jpg\" alt=\"\" class=\"wp-image-43703\" srcset=\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1557459325-b6733cbeae9c.jpg 634w, https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1557459325-b6733cbeae9c-200x300.jpg 200w, https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1557459325-b6733cbeae9c-100x150.jpg 100w\" sizes=\"(max-width: 634px) 100vw, 634px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Concept of \u201cPools\u201d in Tech<\/strong><\/h3>\n\n\n\n<p>Tech workers come across the concept of pools all the time in their works; this is especially true for software development. Since it\u2019s such a pervasive concept, it\u2019d make sense to dedicate a little time to define it.<\/p>\n\n\n\n<p>According to <a href=\"https:\/\/en.wikipedia.org\/wiki\/Pool_(computer_science)\">Wikipedia<\/a>:<\/p>\n\n\n\n<p><em>In computer science, a pool is a collection of resources that are kept ready to use, rather than acquired on use and released afterwards.<\/em><\/p>\n\n\n\n<p>You might think that the definition above doesn\u2019t sound that far from caching, and you wouldn\u2019t be far from the truth. Sure, there are <a href=\"https:\/\/stackoverflow.com\/questions\/5095884\/what-is-the-difference-between-caching-and-pooling\">differences between the concepts<\/a>, but they also have a lot in common. Think of caching as storing values for later reuse, while pooling deals with resources.<\/p>\n\n\n\n<p>The justification for adopting pools is usually performance; for instance, think about scenarios when acquiring some resources might present a high-cost. In situations like that, pooling might come in handy.<\/p>\n\n\n\n<p>A common example would be a pool of database connections. Creating connections presents relevant costs, so it\u2019s advantageous to keep a pool of existing connections from which programming routines can obtain them, instead of creating new connections every time one is required.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>IIS Application Pool \u2013 What It Is, What It\u2019s Used for<\/strong><\/h3>\n\n\n\n<p>We started the post by giving an overview of IIS, proceeding to define the concept of \u201cpools\u201d in tech. Now we\u2019re ready to put it all together and start answering the title question.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Defining the IIS Application Pool<\/strong><\/h4>\n\n\n\n<p>After learning about IIS and understanding the meaning of the pool in Computer Science, defining the \u201cIIS application pool\u201d should be almost trivial. An IIS application pool is a pool\u2014i.e., a collection\u2014that houses applications on IIS. Each application pool consists of a process called w3wp.exe that runs on the server machine. That\u2019s pretty much it.<\/p>\n\n\n\n<p>The question then obviously becomes: why? What is the purpose of application pools on IIS? What do you use them for? Are there implications for your apps?<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>IIS Application Pool: Understanding the Need<\/strong><\/h4>\n\n\n\n<p>As the previous section just covered, you can think of an application pool as a collection or compartment of applications. An application pool can contain n apps, and it allows you to create isolation levels for your applications. Why would that be useful?<\/p>\n\n\n\n<p>One reason to adopt application pools might be to <strong>ensure availability for your apps<\/strong>. Since each pool runs in its dedicated process, an error in one app won\u2019t take down applications in other application pools.<\/p>\n\n\n\n<p>Additionally, you might want to use application pools to <strong>configure different levels of security for different applications<\/strong>. For instance, you have five applications. One of them requires a higher level of security than the other four. In this case, you could create two separate application pools for the two different groups of applications. You can configure each pool to run under a different user account, by specifying the <a href=\"https:\/\/docs.microsoft.com\/en-us\/previous-versions\/windows\/it-pro\/windows-server-2008-R2-and-2008\/cc771170(v=ws.10)?redirectedfrom=MSDN\">identity for the Application Pool<\/a>.<\/p>\n\n\n\n<p>Finally, you might also want to run applications on different versions of the .NET framework. This is yet another case where the application pool might come in handy.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1496904985881-e85624a2e7d6-1024x683.jpg\" alt=\"\" class=\"wp-image-43704\" srcset=\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1496904985881-e85624a2e7d6-1024x683.jpg 1024w, https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1496904985881-e85624a2e7d6-300x200.jpg 300w, https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1496904985881-e85624a2e7d6-150x100.jpg 150w, https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1496904985881-e85624a2e7d6-768x512.jpg 768w, https:\/\/stackify.com\/wp-content\/uploads\/2024\/03\/photo-1496904985881-e85624a2e7d6.jpg 1050w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Going Deeper: Shared vs. Dedicated Application Pools<\/strong><\/h3>\n\n\n\n<p>You can classify IIS application pools into two main categories: shared application pools and dedicated application pools.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Shared Application Pools<\/strong><\/h4>\n\n\n\n<p>You call an application pool \u201cshared\u201d if it hosts several web applications running under it. You\u2019d typically combine many applications into a single application pool if you want to preserve the memory of the server. As we have already mentioned, each pool consists of a w3wp.exe process. If you have ten applications, each one in its own pool, that means you have ten processes in execution. On the other hand, if you host all ten applications under a single application pool, you end up with a single w3wp.exe process running.<\/p>\n\n\n\n<p>What about a dedicated application pool? Well, that\u2019s exactly the opposite: you say a pool is dedicated when it only has a single application running on it. Isolating each app in its own pool enables you to have a more rigid separation between them. Also, as we\u2019ve already said, this compartmentalization prevents the crash of an app that brings other apps down as well.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Dedicated Application Pools<\/strong><\/h4>\n\n\n\n<p>Here are some of the most important advantages of having dedicated application pools over shared ones:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Isolating applications that demand more resources, so they don\u2019t harm the performance of the other applications.<\/li>\n\n\n\n<li>Preventing problems with one application bringing the other apps down<\/li>\n\n\n\n<li>Preventing an application accessing the data from another one.<\/li>\n\n\n\n<li>Having different settings (e.g., different .NET version) for different apps.<\/li>\n\n\n\n<li>Isolating low-trust applications in a restrictive, low privileges, environment to prevent them from getting unauthorized access to other apps.<\/li>\n<\/ul>\n\n\n\n<p>The disadvantage of dedicated application pools boil down to resource usage: since each pool is its own process, more resources are required.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Which One Should You Pick?<\/strong><\/h3>\n\n\n\n<p>Which type of pool should you use? It\u2019s impossible to give a one-size-fits-all answer. Each case will be different and needs to be analyzed individually. However, we\u2019ll give you a rule-of-thumb you can follow to identify certain scenarios for a dedicated pool. Here it goes: prefer a dedicated application pool if your application matches at least one of the following criteria:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It\u2019s a critical application for some reason.<\/li>\n\n\n\n<li>It\u2019s an application you don\u2019t fully trust (e.g., it\u2019s a third-party app).<\/li>\n\n\n\n<li>It consumes too many resources.<\/li>\n<\/ul>\n\n\n\n<p>Those are some good reasons to prefer dedicated application pools. But as we\u2019ve said, this is only a rule-of-thumb. Don\u2019t follow it blindly, and never forget to exercise critical judgment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>IIS Application Pool: Learn How to Use It and Profit<\/strong><\/h3>\n\n\n\n<p>Was that all there is to know about IIS and its application pools? On the contrary: all that you\u2019ve read is nothing but the tip of the iceberg. Now it\u2019s up to you to consider studying and learning more. An interesting next step would be learning <a href=\"https:\/\/stackify.com\/how-to-monitor-iis-performance\/\">how to monitor IIS performance<\/a>: it sort of acts as a sequence to the topic of this post.If you want to go a step further, you should start checking out tools at your disposal. For instance, take a look at <a href=\"https:\/\/stackify.com\/retrace\/\">Retrace<\/a>, which is an application performance management system by Stackify.\n\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>People who are new to hosting web apps on IIS (Internet Information Services) sometimes struggle with the concept of application pools. What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more. We\u2019ll begin by offering a brief introduction to IIS itself. If you\u2019re already well acquainted [&hellip;]<\/p>\n","protected":false},"author":51,"featured_media":37165,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[7],"tags":[14,70],"class_list":["post-26930","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developers","tag-devops","tag-monitoring"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v25.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What Is an IIS Application Pool - Stackify<\/title>\n<meta name=\"description\" content=\"What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is an IIS Application Pool - Stackify\" \/>\n<meta property=\"og:description\" content=\"What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\" \/>\n<meta property=\"og:site_name\" content=\"Stackify\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Stackify\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-07T22:22:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-19T11:04:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"881\" \/>\n\t<meta property=\"og:image:height\" content=\"440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Carlos Schults\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@stackify\" \/>\n<meta name=\"twitter:site\" content=\"@stackify\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Carlos Schults\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\"},\"author\":{\"name\":\"Carlos Schults\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/person\/a2c7c17b5fe2f06e980401be402144f9\"},\"headline\":\"What Is an IIS Application Pool\",\"datePublished\":\"2019-11-07T22:22:48+00:00\",\"dateModified\":\"2024-03-19T11:04:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\"},\"wordCount\":1448,\"publisher\":{\"@id\":\"https:\/\/stackify.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg\",\"keywords\":[\"DevOps\",\"monitoring\"],\"articleSection\":[\"Developer Tips, Tricks &amp; Resources\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\",\"url\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\",\"name\":\"What Is an IIS Application Pool - Stackify\",\"isPartOf\":{\"@id\":\"https:\/\/stackify.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg\",\"datePublished\":\"2019-11-07T22:22:48+00:00\",\"dateModified\":\"2024-03-19T11:04:59+00:00\",\"description\":\"What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage\",\"url\":\"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg\",\"contentUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg\",\"width\":881,\"height\":440},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/stackify.com\/#website\",\"url\":\"https:\/\/stackify.com\/\",\"name\":\"Stackify\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/stackify.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/stackify.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/stackify.com\/#organization\",\"name\":\"Stackify\",\"url\":\"https:\/\/stackify.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png\",\"contentUrl\":\"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png\",\"width\":1377,\"height\":430,\"caption\":\"Stackify\"},\"image\":{\"@id\":\"https:\/\/stackify.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Stackify\/\",\"https:\/\/x.com\/stackify\",\"https:\/\/www.instagram.com\/stackify\/\",\"https:\/\/www.linkedin.com\/company\/2596184\",\"https:\/\/www.youtube.com\/stackify\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/person\/a2c7c17b5fe2f06e980401be402144f9\",\"name\":\"Carlos Schults\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/stackify.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8670234f2c915bc75058e81ac91bf8ff?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8670234f2c915bc75058e81ac91bf8ff?s=96&d=mm&r=g\",\"caption\":\"Carlos Schults\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What Is an IIS Application Pool - Stackify","description":"What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/","og_locale":"en_US","og_type":"article","og_title":"What Is an IIS Application Pool - Stackify","og_description":"What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.","og_url":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/","og_site_name":"Stackify","article_publisher":"https:\/\/www.facebook.com\/Stackify\/","article_published_time":"2019-11-07T22:22:48+00:00","article_modified_time":"2024-03-19T11:04:59+00:00","og_image":[{"width":881,"height":440,"url":"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg","type":"image\/jpeg"}],"author":"Carlos Schults","twitter_card":"summary_large_image","twitter_creator":"@stackify","twitter_site":"@stackify","twitter_misc":{"Written by":"Carlos Schults","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#article","isPartOf":{"@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/"},"author":{"name":"Carlos Schults","@id":"https:\/\/stackify.com\/#\/schema\/person\/a2c7c17b5fe2f06e980401be402144f9"},"headline":"What Is an IIS Application Pool","datePublished":"2019-11-07T22:22:48+00:00","dateModified":"2024-03-19T11:04:59+00:00","mainEntityOfPage":{"@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/"},"wordCount":1448,"publisher":{"@id":"https:\/\/stackify.com\/#organization"},"image":{"@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage"},"thumbnailUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg","keywords":["DevOps","monitoring"],"articleSection":["Developer Tips, Tricks &amp; Resources"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/","url":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/","name":"What Is an IIS Application Pool - Stackify","isPartOf":{"@id":"https:\/\/stackify.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage"},"image":{"@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage"},"thumbnailUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg","datePublished":"2019-11-07T22:22:48+00:00","dateModified":"2024-03-19T11:04:59+00:00","description":"What is an IIS application pool? What purpose does it serve? In this post, we\u2019ll answer these questions\u2014and more.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/stackify.com\/what-is-an-iis-application-pool\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stackify.com\/what-is-an-iis-application-pool\/#primaryimage","url":"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg","contentUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2019\/11\/application-pool-e1574784214745-881x440-1.jpg","width":881,"height":440},{"@type":"WebSite","@id":"https:\/\/stackify.com\/#website","url":"https:\/\/stackify.com\/","name":"Stackify","description":"","publisher":{"@id":"https:\/\/stackify.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/stackify.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/stackify.com\/#organization","name":"Stackify","url":"https:\/\/stackify.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stackify.com\/#\/schema\/logo\/image\/","url":"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png","contentUrl":"https:\/\/stackify.com\/wp-content\/uploads\/2024\/05\/logo-1.png","width":1377,"height":430,"caption":"Stackify"},"image":{"@id":"https:\/\/stackify.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Stackify\/","https:\/\/x.com\/stackify","https:\/\/www.instagram.com\/stackify\/","https:\/\/www.linkedin.com\/company\/2596184","https:\/\/www.youtube.com\/stackify"]},{"@type":"Person","@id":"https:\/\/stackify.com\/#\/schema\/person\/a2c7c17b5fe2f06e980401be402144f9","name":"Carlos Schults","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/stackify.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8670234f2c915bc75058e81ac91bf8ff?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8670234f2c915bc75058e81ac91bf8ff?s=96&d=mm&r=g","caption":"Carlos Schults"}}]}},"_links":{"self":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts\/26930"}],"collection":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/users\/51"}],"replies":[{"embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/comments?post=26930"}],"version-history":[{"count":2,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts\/26930\/revisions"}],"predecessor-version":[{"id":43705,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/posts\/26930\/revisions\/43705"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/media\/37165"}],"wp:attachment":[{"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/media?parent=26930"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/categories?post=26930"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/stackify.com\/wp-json\/wp\/v2\/tags?post=26930"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}