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
9ab2b2ec
Kaydet (Commit)
9ab2b2ec
authored
Ara 15, 1997
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed index references to modules.
Placed references closer to usage.
üst
54820dc8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
14 deletions
+16
-14
libshelve.tex
Doc/lib/libshelve.tex
+8
-7
libshelve.tex
Doc/libshelve.tex
+8
-7
No files found.
Doc/lib/libshelve.tex
Dosyayı görüntüle @
9ab2b2ec
\section
{
Standard Module
\sectcode
{
shelve
}}
\label
{
module-shelve
}
\stmodindex
{
shelve
}
\stmodindex
{
pickle
}
\bimodindex
{
dbm
}
\bimodindex
{
gdbm
}
A ``shelf'' is a persistent, dictionary-like object. The difference
with ``dbm'' databases is that the values (not the keys!) in a shelf
...
...
@@ -11,6 +8,7 @@ can be essentially arbitrary Python objects --- anything that the
\code
{
pickle
}
module can handle. This includes most class instances,
recursive data types, and objects containing lots of shared
sub-objects. The keys are ordinary strings.
\refstmodindex
{
pickle
}
To summarize the interface (
\code
{
key
}
is a string,
\code
{
data
}
is an
arbitrary object):
...
...
@@ -37,20 +35,23 @@ Restrictions:
\begin{itemize}
\item
The choice of which database package will be used (e.g. dbm or gdbm)
The choice of which database package will be used (e.g.
\code
{
dbm
}
or
\code
{
gdbm
}
)
depends on which interface is available. Therefore it isn't safe to
open the database directly using
dbm
. The database is also
(unfortunately) subject to the limitations of
dbm
, if it is used ---
open the database directly using
\code
{
dbm
}
. The database is also
(unfortunately) subject to the limitations of
\code
{
dbm
}
, if it is used ---
this means that (the pickled representation of) the objects stored in
the database should be fairly small, and in rare cases key collisions
may cause the database to refuse updates.
\refbimodindex
{
dbm
}
\refbimodindex
{
gdbm
}
\item
Dependent on the implementation, closing a persistent dictionary may
or may not be necessary to flush changes to disk.
\item
The
\code
{
shelve
}
module does not support
{
\em
concurrent
}
read/write
The
\code
{
shelve
}
module does not support
\emph
{
concurrent
}
read/write
access to shelved objects. (Multiple simultaneous read accesses are
safe.) When a program has a shelf open for writing, no other program
should have it open for reading or writing.
\UNIX
{}
file locking can
...
...
Doc/libshelve.tex
Dosyayı görüntüle @
9ab2b2ec
\section
{
Standard Module
\sectcode
{
shelve
}}
\label
{
module-shelve
}
\stmodindex
{
shelve
}
\stmodindex
{
pickle
}
\bimodindex
{
dbm
}
\bimodindex
{
gdbm
}
A ``shelf'' is a persistent, dictionary-like object. The difference
with ``dbm'' databases is that the values (not the keys!) in a shelf
...
...
@@ -11,6 +8,7 @@ can be essentially arbitrary Python objects --- anything that the
\code
{
pickle
}
module can handle. This includes most class instances,
recursive data types, and objects containing lots of shared
sub-objects. The keys are ordinary strings.
\refstmodindex
{
pickle
}
To summarize the interface (
\code
{
key
}
is a string,
\code
{
data
}
is an
arbitrary object):
...
...
@@ -37,20 +35,23 @@ Restrictions:
\begin{itemize}
\item
The choice of which database package will be used (e.g. dbm or gdbm)
The choice of which database package will be used (e.g.
\code
{
dbm
}
or
\code
{
gdbm
}
)
depends on which interface is available. Therefore it isn't safe to
open the database directly using
dbm
. The database is also
(unfortunately) subject to the limitations of
dbm
, if it is used ---
open the database directly using
\code
{
dbm
}
. The database is also
(unfortunately) subject to the limitations of
\code
{
dbm
}
, if it is used ---
this means that (the pickled representation of) the objects stored in
the database should be fairly small, and in rare cases key collisions
may cause the database to refuse updates.
\refbimodindex
{
dbm
}
\refbimodindex
{
gdbm
}
\item
Dependent on the implementation, closing a persistent dictionary may
or may not be necessary to flush changes to disk.
\item
The
\code
{
shelve
}
module does not support
{
\em
concurrent
}
read/write
The
\code
{
shelve
}
module does not support
\emph
{
concurrent
}
read/write
access to shelved objects. (Multiple simultaneous read accesses are
safe.) When a program has a shelf open for writing, no other program
should have it open for reading or writing.
\UNIX
{}
file locking can
...
...
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