Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #21348 > unrolled thread
| Started by | Roedy Green <see_website@mindprod.com.invalid> |
|---|---|
| First post | 2013-01-12 01:55 -0800 |
| Last post | 2013-02-01 19:57 -0500 |
| Articles | 15 — 8 participants |
Back to article view | Back to comp.lang.java.programmer
idea for more efficient HashMap Roedy Green <see_website@mindprod.com.invalid> - 2013-01-12 01:55 -0800
Re: idea for more efficient HashMap v_borchert@despammed.com (Volker Borchert) - 2013-01-12 14:21 +0000
Re: idea for more efficient HashMap Robert Klemme <shortcutter@googlemail.com> - 2013-01-13 19:44 +0100
Re: idea for more efficient HashMap Kevin McMurtrie <mcmurtrie@pixelmemory.us> - 2013-01-14 21:56 -0800
Re: idea for more efficient HashMap Robert Klemme <shortcutter@googlemail.com> - 2013-01-16 14:31 -0800
Re: idea for more efficient HashMap Lars Enderin <lars.enderin@telia.com> - 2013-01-17 10:23 +0100
Re: idea for more efficient HashMap Kevin McMurtrie <mcmurtrie@pixelmemory.us> - 2013-01-17 19:30 -0800
Re: idea for more efficient HashMap Robert Klemme <shortcutter@googlemail.com> - 2013-01-20 20:28 +0100
Re: idea for more efficient HashMap Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-01-20 14:49 -0500
Re: idea for more efficient HashMap Roedy Green <see_website@mindprod.com.invalid> - 2013-01-29 01:41 -0800
Re: idea for more efficient HashMap Arne Vajhøj <arne@vajhoej.dk> - 2013-01-29 22:03 -0500
Re: idea for more efficient HashMap Gene Wirchenko <genew@telus.net> - 2013-01-30 11:34 -0800
Re: idea for more efficient HashMap Arne Vajhøj <arne@vajhoej.dk> - 2013-01-30 21:35 -0500
Re: idea for more efficient HashMap Gene Wirchenko <genew@telus.net> - 2013-01-31 10:47 -0800
Re: idea for more efficient HashMap Arne Vajhøj <arne@vajhoej.dk> - 2013-02-01 19:57 -0500
| From | Roedy Green <see_website@mindprod.com.invalid> |
|---|---|
| Date | 2013-01-12 01:55 -0800 |
| Subject | idea for more efficient HashMap |
| Message-ID | <9hc2f8ltgn1bmdsrk8vb9kuu1vi5dkl2r5@4ax.com> |
Inside HashMap are little glue Entry objects that point to the key and
value.
What if you could implement an interface on your objects so that
HashMap could use them directly without separate key or Entry glue?.
e.g. getKey()
getPrev()
getNext()
setPrev()
setNext()
One drawback would be your objects could live on only one such
space-efficient HashMap.
--
Roedy Green Canadian Mind Products http://mindprod.com
Students who hire or con others to do their homework are as foolish
as couch potatoes who hire others to go to the gym for them.
[toc] | [next] | [standalone]
| From | v_borchert@despammed.com (Volker Borchert) |
|---|---|
| Date | 2013-01-12 14:21 +0000 |
| Message-ID | <kcrrgh$id8$1@Gaia.teknon.de> |
| In reply to | #21348 |
Roedy Green wrote: > Inside HashMap are little glue Entry objects that point to the key and > value. > > What if you could implement an interface on your objects so that > HashMap could use them directly without separate key or Entry glue?. > > e.g. getKey() > getPrev() > getNext() > setPrev() > setNext() > > One drawback would be your objects could live on only one such > space-efficient HashMap. Use linear probing instead of chained buckets. IdentityHashMap does so. -- "I'm a doctor, not a mechanic." Dr Leonard McCoy <mccoy@ncc1701.starfleet.fed> "I'm a mechanic, not a doctor." Volker Borchert <v_borchert@despammed.com>
[toc] | [prev] | [next] | [standalone]
| From | Robert Klemme <shortcutter@googlemail.com> |
|---|---|
| Date | 2013-01-13 19:44 +0100 |
| Message-ID | <algdl5Ff2dvU1@mid.individual.net> |
| In reply to | #21348 |
On 12.01.2013 10:55, Roedy Green wrote: > Inside HashMap are little glue Entry objects that point to the key and > value. > > What if you could implement an interface on your objects so that > HashMap could use them directly without separate key or Entry glue?. > > e.g. getKey() > getPrev() > getNext() > setPrev() > setNext() > > One drawback would be your objects could live on only one such > space-efficient HashMap. I've once implemented a hash map which uses double hashingand uses a single Object[] for storage of keys and values. It creates Entry instances on the fly while iterating. We did this to get rid of a few hundred thousand Entry instances and improve GC behavior of the application. Works pretty good. http://en.wikipedia.org/wiki/Double_hashing Side benefit of that implementation was that you get ConcurrentModificationException only if the map needed to be resized as part of an insert operation. I cannot share this implementation here as it is proprietary code. But you should pretty much have everything to implement it yourself. If you do it do not forget to create meaningful unit tests. Kind regards robert -- remember.guy do |as, often| as.you_can - without end http://blog.rubybestpractices.com/
[toc] | [prev] | [next] | [standalone]
| From | Kevin McMurtrie <mcmurtrie@pixelmemory.us> |
|---|---|
| Date | 2013-01-14 21:56 -0800 |
| Message-ID | <50f4ef8e$0$80160$742ec2ed@news.sonic.net> |
| In reply to | #21348 |
In article <9hc2f8ltgn1bmdsrk8vb9kuu1vi5dkl2r5@4ax.com>, Roedy Green <see_website@mindprod.com.invalid> wrote: > Inside HashMap are little glue Entry objects that point to the key and > value. > > What if you could implement an interface on your objects so that > HashMap could use them directly without separate key or Entry glue?. > > e.g. getKey() > getPrev() > getNext() > setPrev() > setNext() > > One drawback would be your objects could live on only one such > space-efficient HashMap. I've done this when efficiency demanded it. The downside is that you can't implement java.util.Map or java.util.Dictionary because of the way put(K,V) is declared. There's no need for hashed storage in Maps. Hashing is a good general purpose performer but special cases can do better. Maps having 1 to 10 elements may perform better with the keys and values interleaved in one array. A search tree (TreeMap) can perform better when keys are large. -- I will not see posts from Google because I must filter them as spam
[toc] | [prev] | [next] | [standalone]
| From | Robert Klemme <shortcutter@googlemail.com> |
|---|---|
| Date | 2013-01-16 14:31 -0800 |
| Message-ID | <1d8355c1-4128-4920-9430-3a253e768cab@googlegroups.com> |
| In reply to | #21407 |
On Tuesday, January 15, 2013 6:56:29 AM UTC+1, Kevin McMurtrie wrote: > In article <9hc2f8ltgn1bmdsrk8vb9kuu1vi5dkl2r5@4ax.com>, > Roedy Green <see_website@mindprod.com.invalid> wrote: > > Inside HashMap are little glue Entry objects that point to the key and > > value. > > > What if you could implement an interface on your objects so that > > HashMap could use them directly without separate key or Entry glue?. > > > > > e.g. getKey() > > getPrev() > > getNext() > > setPrev() > > setNext() > > > > > One drawback would be your objects could live on only one such > > space-efficient HashMap. > > I've done this when efficiency demanded it. The downside is that you > can't implement java.util.Map or java.util.Dictionary because of the way > put(K,V) is declared. Why that? I actually have done that implementation (see above) and it is consistent with the Map interface. > I will not see posts from Google because I must filter them as spam That might be a mistake - you'll might lose valuable feedback that way. Kind regards robert
[toc] | [prev] | [next] | [standalone]
| From | Lars Enderin <lars.enderin@telia.com> |
|---|---|
| Date | 2013-01-17 10:23 +0100 |
| Message-ID | <50F7C307.7060407@telia.com> |
| In reply to | #21450 |
2013-01-16 23:31, Robert Klemme skrev: > On Tuesday, January 15, 2013 6:56:29 AM UTC+1, Kevin McMurtrie wrote: >> In article <9hc2f8ltgn1bmdsrk8vb9kuu1vi5dkl2r5@4ax.com>, >> Roedy Green <see_website@mindprod.com.invalid> wrote: >>> Inside HashMap are little glue Entry objects that point to the key and >>> value. >> >>> What if you could implement an interface on your objects so that >>> HashMap could use them directly without separate key or Entry glue?. >>> >> >>> e.g. getKey() >>> getPrev() >>> getNext() >>> setPrev() >>> setNext() >>> >> >>> One drawback would be your objects could live on only one such >>> space-efficient HashMap. >> >> I've done this when efficiency demanded it. The downside is that you >> can't implement java.util.Map or java.util.Dictionary because of the way >> put(K,V) is declared. > > Why that? I actually have done that implementation (see above) and it is consistent with the Map interface. > >> I will not see posts from Google because I must filter them as spam > > That might be a mistake - you'll might lose valuable feedback that way. > He will not see your post then... -- Lars Enderin
[toc] | [prev] | [next] | [standalone]
| From | Kevin McMurtrie <mcmurtrie@pixelmemory.us> |
|---|---|
| Date | 2013-01-17 19:30 -0800 |
| Message-ID | <50f8c1f2$0$80125$742ec2ed@news.sonic.net> |
| In reply to | #21471 |
In article <50F7C307.7060407@telia.com>, Lars Enderin <lars.enderin@telia.com> wrote: > 2013-01-16 23:31, Robert Klemme skrev: > > On Tuesday, January 15, 2013 6:56:29 AM UTC+1, Kevin McMurtrie wrote: > >> In article <9hc2f8ltgn1bmdsrk8vb9kuu1vi5dkl2r5@4ax.com>, > >> Roedy Green <see_website@mindprod.com.invalid> wrote: > >>> Inside HashMap are little glue Entry objects that point to the key and > >>> value. > >> > >>> What if you could implement an interface on your objects so that > >>> HashMap could use them directly without separate key or Entry glue?. > >>> > >> > >>> e.g. getKey() > >>> getPrev() > >>> getNext() > >>> setPrev() > >>> setNext() > >>> > >> > >>> One drawback would be your objects could live on only one such > >>> space-efficient HashMap. > >> > >> I've done this when efficiency demanded it. The downside is that you > >> can't implement java.util.Map or java.util.Dictionary because of the way > >> put(K,V) is declared. > > > > Why that? I actually have done that implementation (see above) and it is > > consistent with the Map interface. > > > >> I will not see posts from Google because I must filter them as spam > > > > That might be a mistake - you'll might lose valuable feedback that way. > > > > He will not see your post then... The Google filter is real. Google doesn't maintain their systems so they're employed by Chinese crime gangs to flood many Usenet groups. My original point is that you can't gracefully enforce insertion of an object having the key, value, and collision link together when put(K,V) takes two arguments. It's unfortunate that Dictionary defines setter methods. There are so many cases where I want a widely supported implementation of V get(K) without the other things. Maybe if interface compatibility was more flexible it wouldn't be a problem. -- I will not see posts from Google because I must filter them as spam
[toc] | [prev] | [next] | [standalone]
| From | Robert Klemme <shortcutter@googlemail.com> |
|---|---|
| Date | 2013-01-20 20:28 +0100 |
| Message-ID | <am2ur4FllauU1@mid.individual.net> |
| In reply to | #21508 |
On 18.01.2013 04:30, Kevin McMurtrie wrote: > In article <50F7C307.7060407@telia.com>, > Lars Enderin <lars.enderin@telia.com> wrote: > >> 2013-01-16 23:31, Robert Klemme skrev: >>> On Tuesday, January 15, 2013 6:56:29 AM UTC+1, Kevin McMurtrie wrote: >>>> In article <9hc2f8ltgn1bmdsrk8vb9kuu1vi5dkl2r5@4ax.com>, >>>> Roedy Green <see_website@mindprod.com.invalid> wrote: >>>>> Inside HashMap are little glue Entry objects that point to the key and >>>>> value. >>>> >>>>> What if you could implement an interface on your objects so that >>>>> HashMap could use them directly without separate key or Entry glue?. >>>>> >>>> >>>>> e.g. getKey() >>>>> getPrev() >>>>> getNext() >>>>> setPrev() >>>>> setNext() >>>>> >>>> >>>>> One drawback would be your objects could live on only one such >>>>> space-efficient HashMap. >>>> >>>> I've done this when efficiency demanded it. The downside is that you >>>> can't implement java.util.Map or java.util.Dictionary because of the way >>>> put(K,V) is declared. >>> >>> Why that? I actually have done that implementation (see above) and it is >>> consistent with the Map interface. >>> >>>> I will not see posts from Google because I must filter them as spam >>> >>> That might be a mistake - you'll might lose valuable feedback that way. >> >> He will not see your post then... As I said above... :-) > The Google filter is real. Google doesn't maintain their systems so > they're employed by Chinese crime gangs to flood many Usenet groups. My Usenet provider does a pretty decent job filtering spam for around 10 EUR / year. So there are definitively ways to handle that. > My original point is that you can't gracefully enforce insertion of an > object having the key, value, and collision link together when put(K,V) > takes two arguments. What exactly do you mean by "collision link"? > It's unfortunate that Dictionary defines setter > methods. There are so many cases where I want a widely supported > implementation of V get(K) without the other things. Are you referring to the setter of Map.Entry<K,V>? Kind regards robert -- remember.guy do |as, often| as.you_can - without end http://blog.rubybestpractices.com/
[toc] | [prev] | [next] | [standalone]
| From | Eric Sosman <esosman@comcast-dot-net.invalid> |
|---|---|
| Date | 2013-01-20 14:49 -0500 |
| Message-ID | <kdhhp6$dil$1@dont-email.me> |
| In reply to | #21508 |
On 1/17/2013 10:30 PM, Kevin McMurtrie wrote:
>[...]
> My original point is that you can't gracefully enforce insertion of an
> object having the key, value, and collision link together when put(K,V)
> takes two arguments. It's unfortunate that Dictionary defines setter
> methods. There are so many cases where I want a widely supported
> implementation of V get(K) without the other things. Maybe if interface
> compatibility was more flexible it wouldn't be a problem.
One approach would be to write a class implementing the
Map<K,V> interface, but whose put(K,V) method throws an
exception (just as an UnmodifiableMap's does). Sketch:
interface Mappable<K,V> {
K getKey();
V getValue();
Mappable<K,V> getNext();
// ...
}
class Mapping<K,V> implements Map<K,V> {
@Override
public V put(K key, V value) {
throw new UnsupportedOperationException();
}
// Not an @Override
public void put(Mappable<K,V> entry) {
// ...
}
// ...
}
True, run-time instead of compile-time detection of the use
of an unsupported method is not exactly graceful, but there's
certainly precedent. (Maybe you can @deprecate the put(K,V)
method; off-hand I don't know whether that works with a method
that's not deprecated by its interface -- and even if you can,
that only provides a compile-time guard for explicit uses of
the Mapping class, not for references via its Map interface.)
--
Eric Sosman
esosman@comcast-dot-net.invalid
[toc] | [prev] | [next] | [standalone]
| From | Roedy Green <see_website@mindprod.com.invalid> |
|---|---|
| Date | 2013-01-29 01:41 -0800 |
| Message-ID | <o56fg8p1fjr5up3pde60g2prk9qot2deij@4ax.com> |
| In reply to | #21508 |
On Thu, 17 Jan 2013 19:30:58 -0800, Kevin McMurtrie <mcmurtrie@pixelmemory.us> wrote, quoted or indirectly quoted someone who said : > Google doesn't maintain their systems so >they're employed by Chinese crime gangs to flood many Usenet groups. Nobody "maintains" (moderates) posts entering the newsgroups via other streams either. The only reason to deprecate Google Groups is they are more accessible for newbies. For me, they are the ones I want to talk to most. -- Roedy Green Canadian Mind Products http://mindprod.com The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time. ~ Tom Cargill Ninety-ninety Law
[toc] | [prev] | [next] | [standalone]
| From | Arne Vajhøj <arne@vajhoej.dk> |
|---|---|
| Date | 2013-01-29 22:03 -0500 |
| Message-ID | <51088d84$0$292$14726298@news.sunsite.dk> |
| In reply to | #21830 |
On 1/29/2013 4:41 AM, Roedy Green wrote: > On Thu, 17 Jan 2013 19:30:58 -0800, Kevin McMurtrie > <mcmurtrie@pixelmemory.us> wrote, quoted or indirectly quoted someone > who said : >> Google doesn't maintain their systems so >> they're employed by Chinese crime gangs to flood many Usenet groups. > > Nobody "maintains" (moderates) posts entering the newsgroups via other > streams either. The only reason to deprecate Google Groups is they > are more accessible for newbies. For me, they are the ones I want to > talk to most. I am sure that they frequently click on your links. Arne
[toc] | [prev] | [next] | [standalone]
| From | Gene Wirchenko <genew@telus.net> |
|---|---|
| Date | 2013-01-30 11:34 -0800 |
| Message-ID | <1ctig8h6o6siqiacfd78gd4qnb0fa1cjm5@4ax.com> |
| In reply to | #21850 |
On Tue, 29 Jan 2013 22:03:28 -0500, Arne Vajhøj <arne@vajhoej.dk>
wrote:
>On 1/29/2013 4:41 AM, Roedy Green wrote:
>> On Thu, 17 Jan 2013 19:30:58 -0800, Kevin McMurtrie
>> <mcmurtrie@pixelmemory.us> wrote, quoted or indirectly quoted someone
>> who said :
>>> Google doesn't maintain their systems so
>>> they're employed by Chinese crime gangs to flood many Usenet groups.
>>
>> Nobody "maintains" (moderates) posts entering the newsgroups via other
>> streams either. The only reason to deprecate Google Groups is they
>> are more accessible for newbies. For me, they are the ones I want to
>> talk to most.
>
>I am sure that they frequently click on your links.
I have clicked on a link of Roedy's when the link was of a
subject of interest to me. I like to have helpful things available.
Sincerely,
Gene Wirchenko
[toc] | [prev] | [next] | [standalone]
| From | Arne Vajhøj <arne@vajhoej.dk> |
|---|---|
| Date | 2013-01-30 21:35 -0500 |
| Message-ID | <5109d881$0$293$14726298@news.sunsite.dk> |
| In reply to | #21880 |
On 1/30/2013 2:34 PM, Gene Wirchenko wrote: > On Tue, 29 Jan 2013 22:03:28 -0500, Arne Vajhøj <arne@vajhoej.dk> > wrote: > >> On 1/29/2013 4:41 AM, Roedy Green wrote: >>> On Thu, 17 Jan 2013 19:30:58 -0800, Kevin McMurtrie >>> <mcmurtrie@pixelmemory.us> wrote, quoted or indirectly quoted someone >>> who said : >>>> Google doesn't maintain their systems so >>>> they're employed by Chinese crime gangs to flood many Usenet groups. >>> >>> Nobody "maintains" (moderates) posts entering the newsgroups via other >>> streams either. The only reason to deprecate Google Groups is they >>> are more accessible for newbies. For me, they are the ones I want to >>> talk to most. >> >> I am sure that they frequently click on your links. > > I have clicked on a link of Roedy's when the link was of a > subject of interest to me. I like to have helpful things available. If you liked the content then good for you. As you probably have noticed, then there is not universal agreement on the quality of those pages. I would go to Wikipedia instead. Arne
[toc] | [prev] | [next] | [standalone]
| From | Gene Wirchenko <genew@telus.net> |
|---|---|
| Date | 2013-01-31 10:47 -0800 |
| Message-ID | <01flg8tdhj3oh8d6lom42hdb5iof817ckv@4ax.com> |
| In reply to | #21898 |
On Wed, 30 Jan 2013 21:35:40 -0500, Arne Vajhøj <arne@vajhoej.dk>
wrote:
>On 1/30/2013 2:34 PM, Gene Wirchenko wrote:
[snip]
>> I have clicked on a link of Roedy's when the link was of a
>> subject of interest to me. I like to have helpful things available.
>
>If you liked the content then good for you.
>
>As you probably have noticed, then there is not universal agreement
>on the quality of those pages.
That is true of the Internet in general. Planning on giving up
on the Net?
>I would go to Wikipedia instead.
Any port in a storm.
Sincerely,
Gene Wirchenko
[toc] | [prev] | [next] | [standalone]
| From | Arne Vajhøj <arne@vajhoej.dk> |
|---|---|
| Date | 2013-02-01 19:57 -0500 |
| Message-ID | <510c6489$0$282$14726298@news.sunsite.dk> |
| In reply to | #21935 |
On 1/31/2013 1:47 PM, Gene Wirchenko wrote: > On Wed, 30 Jan 2013 21:35:40 -0500, Arne Vajhøj <arne@vajhoej.dk> > wrote: > >> On 1/30/2013 2:34 PM, Gene Wirchenko wrote: > > [snip] > >>> I have clicked on a link of Roedy's when the link was of a >>> subject of interest to me. I like to have helpful things available. >> >> If you liked the content then good for you. >> >> As you probably have noticed, then there is not universal agreement >> on the quality of those pages. > > That is true of the Internet in general. Planning on giving up > on the Net? If there were a better network: yes. But there isn't. There are better places than Roedy's site for information about Java. Arne
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.java.programmer
csiph-web