Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
fe22dcab
Kaydet (Commit)
fe22dcab
authored
Ock 01, 2013
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16787: Increase asyncore and asynchat default output buffers size, to
decrease CPU usage and increase throughput.
üst
ef45380b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
asynchat.py
Lib/asynchat.py
+2
-2
asyncore.py
Lib/asyncore.py
+1
-1
NEWS
Misc/NEWS
+4
-1
No files found.
Lib/asynchat.py
Dosyayı görüntüle @
fe22dcab
...
...
@@ -56,8 +56,8 @@ class async_chat (asyncore.dispatcher):
# these are overridable defaults
ac_in_buffer_size
=
409
6
ac_out_buffer_size
=
409
6
ac_in_buffer_size
=
6553
6
ac_out_buffer_size
=
6553
6
# we don't want to enable the use of encoding by default, because that is a
# sign of an application bug that we don't want to pass silently
...
...
Lib/asyncore.py
Dosyayı görüntüle @
fe22dcab
...
...
@@ -532,7 +532,7 @@ class dispatcher_with_send(dispatcher):
def
initiate_send
(
self
):
num_sent
=
0
num_sent
=
dispatcher
.
send
(
self
,
self
.
out_buffer
[:
512
])
num_sent
=
dispatcher
.
send
(
self
,
self
.
out_buffer
[:
65536
])
self
.
out_buffer
=
self
.
out_buffer
[
num_sent
:]
def
handle_write
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
fe22dcab
...
...
@@ -200,7 +200,10 @@ Core and Builtins
Library
-------
-
Issue
10527
:
make
multiprocessing
use
poll
()
instead
of
select
()
if
available
.
-
Issue
#
16787
:
Increase
asyncore
and
asynchat
default
output
buffers
size
,
to
decrease
CPU
usage
and
increase
throughput
.
-
Issue
#
10527
:
make
multiprocessing
use
poll
()
instead
of
select
()
if
available
.
-
Issue
#
16688
:
Fix
backreferences
did
make
case
-
insensitive
regex
fail
on
non
-
ASCII
strings
.
Patch
by
Matthew
Barnett
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment