Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
2af0a364
Commit
2af0a364
authored
May 17, 2002
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Combine _{add,del}wordinfo; make length() part of IIndex.
parent
6cb8ab91
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
115 deletions
+3
-115
lib/python/Products/ZCTextIndex/BaseIndex.py
lib/python/Products/ZCTextIndex/BaseIndex.py
+0
-11
lib/python/Products/ZCTextIndex/CosineIndex.py
lib/python/Products/ZCTextIndex/CosineIndex.py
+0
-52
lib/python/Products/ZCTextIndex/IIndex.py
lib/python/Products/ZCTextIndex/IIndex.py
+3
-0
lib/python/Products/ZCTextIndex/OkapiIndex.py
lib/python/Products/ZCTextIndex/OkapiIndex.py
+0
-52
No files found.
lib/python/Products/ZCTextIndex/BaseIndex.py
View file @
2af0a364
...
...
@@ -137,17 +137,6 @@ class BaseIndex(Persistent):
# Okapi BM25 deals with weighting query terms.
return
10
# arbitrary
def
_get_frequencies
(
self
,
wids
):
"""Return individual term frequencies."""
# Computes f(d, t) for each term.
# Returns a dict mapping wid to the number of times wid appeares
# in wids, {t -> f(d, t)}
d
=
{}
dget
=
d
.
get
for
wid
in
wids
:
d
[
wid
]
=
dget
(
wid
,
0
)
+
1
return
d
DICT_CUTOFF
=
10
def
_add_wordinfo
(
self
,
wid
,
f
,
docid
):
...
...
lib/python/Products/ZCTextIndex/CosineIndex.py
View file @
2af0a364
...
...
@@ -145,58 +145,6 @@ class CosineIndex(BaseIndex):
#print "->", weights[i]
return
d
.
keys
(),
weights
,
scaled_int
(
W
)
DICT_CUTOFF
=
10
def
_add_wordinfo
(
self
,
wid
,
f
,
docid
):
# Store a wordinfo in a dict as long as there are less than
# DICT_CUTOFF docids in the dict. Otherwise use an IIBTree.
# The pickle of a dict is smaller than the pickle of an
# IIBTree, substantially so for small mappings. Thus, we use
# a dictionary until the mapping reaches DICT_CUTOFF elements.
# The cutoff is chosen based on the implementation
# characteristics of Python dictionaries. The dict hashtable
# always has 2**N slots and is resized whenever it is 2/3s
# full. A pickled dict with 10 elts is half the size of an
# IIBTree with 10 elts, and 10 happens to be 2/3s of 2**4. So
# choose 10 as the cutoff for now.
# The IIBTree has a smaller in-memory representation than a
# dictionary, so pickle size isn't the only consideration when
# choosing the threshold. The pickle of a 500-elt dict is 92%
# of the size of the same IIBTree, but the dict uses more
# space when it is live in memory. An IIBTree stores two C
# arrays of ints, one for the keys and one for the values. It
# holds upto 120 key-value pairs in a single bucket.
try
:
map
=
self
.
_wordinfo
[
wid
]
except
KeyError
:
map
=
{}
else
:
# _add_wordinfo() is called for each update. If the map
# size exceeds the DICT_CUTOFF, convert to an IIBTree.
if
len
(
map
)
==
self
.
DICT_CUTOFF
:
map
=
IIBTree
(
map
)
map
[
docid
]
=
f
self
.
_wordinfo
[
wid
]
=
map
# Not redundant, because of Persistency!
def
_del_wordinfo
(
self
,
wid
,
docid
):
try
:
map
=
self
.
_wordinfo
[
wid
]
del
map
[
docid
]
except
KeyError
:
return
if
len
(
map
)
==
0
:
del
self
.
_wordinfo
[
wid
]
return
if
len
(
map
)
==
self
.
DICT_CUTOFF
:
new
=
{}
for
k
,
v
in
map
.
items
():
new
[
k
]
=
v
map
=
new
self
.
_wordinfo
[
wid
]
=
map
# Not redundant, because of Persistency!
def
_add_undoinfo
(
self
,
docid
,
wids
):
self
.
_docwords
[
docid
]
=
WidCode
.
encode
(
wids
)
...
...
lib/python/Products/ZCTextIndex/IIndex.py
View file @
2af0a364
...
...
@@ -19,6 +19,9 @@ import Interface
class
IIndex
(
Interface
.
Base
):
"""Interface for an Index."""
def
length
():
"""Return the number of documents in the index."""
def
search
(
term
):
"""Execute a search on a single term given as a string.
...
...
lib/python/Products/ZCTextIndex/OkapiIndex.py
View file @
2af0a364
...
...
@@ -146,58 +146,6 @@ class OkapiIndex(BaseIndex):
d
[
wid
]
=
dget
(
wid
,
0
)
+
1
return
d
DICT_CUTOFF
=
10
def
_add_wordinfo
(
self
,
wid
,
f
,
docid
):
# Store a wordinfo in a dict as long as there are less than
# DICT_CUTOFF docids in the dict. Otherwise use an IIBTree.
# The pickle of a dict is smaller than the pickle of an
# IIBTree, substantially so for small mappings. Thus, we use
# a dictionary until the mapping reaches DICT_CUTOFF elements.
# The cutoff is chosen based on the implementation
# characteristics of Python dictionaries. The dict hashtable
# always has 2**N slots and is resized whenever it is 2/3s
# full. A pickled dict with 10 elts is half the size of an
# IIBTree with 10 elts, and 10 happens to be 2/3s of 2**4. So
# choose 10 as the cutoff for now.
# The IIBTree has a smaller in-memory representation than a
# dictionary, so pickle size isn't the only consideration when
# choosing the threshold. The pickle of a 500-elt dict is 92%
# of the size of the same IIBTree, but the dict uses more
# space when it is live in memory. An IIBTree stores two C
# arrays of ints, one for the keys and one for the values. It
# holds upto 120 key-value pairs in a single bucket.
try
:
map
=
self
.
_wordinfo
[
wid
]
except
KeyError
:
map
=
{}
else
:
# _add_wordinfo() is called for each update. If the map
# size exceeds the DICT_CUTOFF, convert to an IIBTree.
if
len
(
map
)
==
self
.
DICT_CUTOFF
:
map
=
IIBTree
(
map
)
map
[
docid
]
=
f
self
.
_wordinfo
[
wid
]
=
map
# Not redundant, because of Persistency!
def
_del_wordinfo
(
self
,
wid
,
docid
):
try
:
map
=
self
.
_wordinfo
[
wid
]
del
map
[
docid
]
except
KeyError
:
return
if
len
(
map
)
==
0
:
del
self
.
_wordinfo
[
wid
]
return
if
len
(
map
)
==
self
.
DICT_CUTOFF
:
new
=
{}
for
k
,
v
in
map
.
items
():
new
[
k
]
=
v
map
=
new
self
.
_wordinfo
[
wid
]
=
map
# Not redundant, because of Persistency!
"""
"Okapi" (much like "cosine rule" also) is a large family of scoring gimmicks.
It's based on probability arguments about how words are distributed in
...
...
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