8
votes
3answers
244 views
Does Java have a HashMap with reverse lookup?
I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but I will need O(1) lookup in both directions. Is there a name for this type of data …
2
votes
2answers
114 views
Finding the domain name of a site that is hotlinking in Google app engine using web2py
Let's say we have an image in the Google App Engine and sites are hotlinking it.
How can I find the domain names of the sites?
My first thought was:
request.client
and then do a reverse lookup …
