473,396 Members | 2,036 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Keep IIS Alive

I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?

Jun 12 '07 #1
7 7203
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.

If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.

If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<ma********@fificorp.netwrote in message
news:11**********************@r19g2000prf.googlegr oups.com...
>I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?

Jun 12 '07 #2
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.

If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.

If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message

news:11**********************@r19g2000prf.googlegr oups.com...
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -

- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Start and Application_End to start and stop the WWF
engine.

Jun 13 '07 #3
re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night

You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.

re:
!I have discovered that when Application_End occurs the workflow stops too

That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.

re:
!I have tried to manually load a page from the web site and then the workflow starts up again.

You can setup a batch file which does that, which you can schedule at your lowest-traffic time.

That batch file could include :

1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again

Windows Scheduler can do that quite easily.

In the morning, all you'd have to do is close the server's browser
....or you could kill iexplore.exe's process programmatically ( using another scheduled process ).


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<ma********@fificorp.netwrote in message
news:11**********************@i13g2000prf.googlegr oups.com...
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.

If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.

If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message

news:11**********************@r19g2000prf.googlegr oups.com...
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -

- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Start and Application_End to start and stop the WWF
engine.
Jun 13 '07 #4
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night

You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.

re:
!I have discovered that when Application_End occurs the workflow stops too

That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.

re:
!I have tried to manually load a page from the web site and then the workflow starts up again.

You can setup a batch file which does that, which you can schedule at your lowest-traffic time.

That batch file could include :

1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again

Windows Scheduler can do that quite easily.

In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmatically ( using another scheduled process ).

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message

news:11**********************@i13g2000prf.googlegr oups.com...
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:


You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message
news:11**********************@r19g2000prf.googlegr oups.com...
>I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Start and Application_End to start and stop the WWF
engine.- Dölj citerad text -

- Visa citerad text -
It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.

Jun 13 '07 #5
re:
!It is important that this site does not affect other sites on the web
!server so I can not for example execute iisreset at a regular interval.

Place the app in its own Application Pool...and only recycle *that* Application Pool.

A simple procedure to do that is described here:
http://blogs.iis.net/chrisad/archive...n-IIS-6.0.aspx

Another way to do that is described here :
http://www.microsoft.com/technet/tec...1/InsideMSCOM/

( recycleapps.vbs <server_name<apppool_name )

Recycleapps.vbs is included in this download :
http://download.microsoft.com/downlo...nsideMSCOM.exe

If you're not using IIS 6.0, you can open the application's web.config in Notepad,
and use SendKeys to send an <enterand save the file afterwards...or you can
run an ASP.NET file which does that programmatically, using the

You can schedule *that*, too.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<ma********@fificorp.netwrote in message
news:11*********************@j4g2000prf.googlegrou ps.com...
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night

You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.

re:
!I have discovered that when Application_End occurs the workflow stops too

That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.

re:
!I have tried to manually load a page from the web site and then the workflow starts up again.

You can setup a batch file which does that, which you can schedule at your lowest-traffic time.

That batch file could include :

1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again

Windows Scheduler can do that quite easily.

In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmatically ( using another scheduled process ).

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message

news:11**********************@i13g2000prf.googlegr oups.com...
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:


You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================
<mail747...@fificorp.netwrote in message
>
news:11**********************@r19g2000prf.googlegr oups.com...
>I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Start and Application_End to start and stop the WWF
engine.- Dölj citerad text -

- Visa citerad text -
It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.
Jun 13 '07 #6
On 13 Juni, 13:50, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
re:
!It is important that this site does not affect other sites on the web
!server so I can not for example execute iisreset at a regular interval.

Place the app in its own Application Pool...and only recycle *that* Application Pool.

A simple procedure to do that is described here:http://blogs.iis.net/chrisad/archive...ng-Application...

Another way to do that is described here :http://www.microsoft.com/technet/tec...1/InsideMSCOM/

( recycleapps.vbs <server_name<apppool_name )

Recycleapps.vbs is included in this download :http://download.microsoft.com/downlo...8a1-4f71-8546-...

If you're not using IIS 6.0, you can open the application's web.config inNotepad,
and use SendKeys to send an <enterand save the file afterwards...or youcan
run an ASP.NET file which does that programmatically, using the

You can schedule *that*, too.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message

news:11*********************@j4g2000prf.googlegrou ps.com...
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:


re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night
You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.
re:
!I have discovered that when Application_End occurs the workflow stops too
That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.
re:
!I have tried to manually load a page from the web site and then the workflow starts up again.
You can setup a batch file which does that, which you can schedule at your lowest-traffic time.
That batch file could include :
1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again
Windows Scheduler can do that quite easily.
In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmatically ( using another scheduled process ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message
news:11**********************@i13g2000prf.googlegr oups.com...
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond torequests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================
<mail747...@fificorp.netwrote in message
>news:11**********************@r19g2000prf.googleg roups.com...
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -
Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.
I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.
Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Start and Application_End to start and stop the WWF
engine.- Dölj citerad text -
- Visa citerad text -

It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.- Dölj citerad text -

- Visa citerad text -
Thanks for your answer but my problem is that I want to keep the
ASP.NET application alive so the workflow does not stop running if the
web service does not get any requests. Do you think that recycling the
application pool will accomplish that? I am not so sure either that
recycling the application pool every 5 minutes is such a good idea. It
could affect the workflow.

Jun 13 '07 #7
re:
!but my problem is that I want to keep the ASP.NET application alive so the
!workflow does not stop running if the web service does not get any requests.

....and I already told you that might create more problems than it solves.

I have given you pointers to several solutions which *do* work,
with a minimum of fuss and problems for you and/or your application.

If you don't want to implement any of them...you're on your own.

re:
!I am not so sure either that recycling the application pool every 5 minutes is such a good idea.

You have completely misunderstood what the suggested solutions do.

The idea is to recycle the application pool ONCE daily, at the time when your application gets
the least requests, and immediately afterwards run a batch file to reinitialize your workflow.

That will accomplish two things : 1. safeguard your app from being stalled by excessive
resource consumtion ( from not being recycled ) ...and 2. : restart your application
so the workflow gets reinitialized.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
<ma********@fificorp.netwrote in message
news:11**********************@q19g2000prn.googlegr oups.com...
On 13 Juni, 13:50, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
re:
!It is important that this site does not affect other sites on the web
!server so I can not for example execute iisreset at a regular interval.

Place the app in its own Application Pool...and only recycle *that* Application Pool.

A simple procedure to do that is described
here:http://blogs.iis.net/chrisad/archive...ng-Application...

Another way to do that is described here
:http://www.microsoft.com/technet/tec...1/InsideMSCOM/

( recycleapps.vbs <server_name<apppool_name )

Recycleapps.vbs is included in this download
:http://download.microsoft.com/downlo...8a1-4f71-8546-...

If you're not using IIS 6.0, you can open the application's web.config in Notepad,
and use SendKeys to send an <enterand save the file afterwards...or you can
run an ASP.NET file which does that programmatically, using the

You can schedule *that*, too.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message

news:11*********************@j4g2000prf.googlegrou ps.com...
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:


re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night
You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.
re:
!I have discovered that when Application_End occurs the workflow stops too
That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.
re:
!I have tried to manually load a page from the web site and then the workflow starts up again.
You can setup a batch file which does that, which you can schedule at your lowest-traffic time.
That batch file could include :
1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again
Windows Scheduler can do that quite easily.
In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmatically ( using another scheduled
process ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================<mail747...@ fificorp.netwrote in message
news:11**********************@i13g2000prf.googlegr oups.com...
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@nowhere.comwrote:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
======================================
<mail747...@fificorp.netwrote in message
>news:11**********************@r19g2000prf.googleg roups.com...
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -
Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.
I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.
Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Start and Application_End to start and stop the WWF
engine.- Dölj citerad text -
- Visa citerad text -

It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.- Dölj citerad text -

- Visa citerad text -
Thanks for your answer but my problem is that I want to keep the
ASP.NET application alive so the workflow does not stop running if the
web service does not get any requests. Do you think that recycling the
application pool will accomplish that? I am not so sure either that
recycling the application pool every 5 minutes is such a good idea. It
could affect the workflow.
Jun 13 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: David | last post by:
This is called "evil hack problem" because my problems are due to me trying to do an evil hack. Please don't judge me, just believe that there are reasons for what I'm trying to do :-) I've got...
0
by: Gil Strauss | last post by:
When using .net framework HttpWebRequest object, how can we set the connection header to "keep-alive" Acording to Microsoft ducomentation, setting the keepAlive property to true, should do the job,...
1
by: cppdev | last post by:
Hello, After reading a few articles, http://blogs.gotdotnet.com/cbrumme/PermaLink.aspx/e55664b4-6471-48b9-b360-f0fa27ab6cc0...
2
by: David Rasmussen | last post by:
Someone once asked about this an got no answer: ...
1
by: Nuno Magalhaes | last post by:
With the sniffer ethereal I get a lot of Connections Keep Alive in some sites like google.com and that returns me the Content-Length in the HTTP response header. When the connection is Close I...
4
by: Morgan Cheng | last post by:
Days ago, I post a question on how to make SoapHttpClientProtocol instance make new TCP connection for each web service request. Now, I found how. SoapHttpClientProtocol has a protected method...
0
by: Ramchandar | last post by:
In my aspx page i want the lot of informations to be filled by the user. But wen the user takes some break to fill the form n resumes after some time the page gets expired. So to keep the session...
0
by: richard.krehbiel | last post by:
I've been googling for half a day now and have found answers on both sides of the argument. Baiscally it's this: I am using PHP 5.0.4 (I can upgrade if that's a solution) as an ISAPI module under...
1
by: =?Utf-8?B?QWxwaGFwYWdl?= | last post by:
Hello, I have built an object which does some jobs on a particular server. There can have lots of this object running concurrently. I want to know what is the best way to optimize my...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.