Tagged Questions
The reverse-lookup tag has no wiki summary.
24
votes
4answers
7k 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 ...
3
votes
2answers
234 views
Reverse lookup a nested dictionary
Dictionary<string, Dictionary<string, ... >...> nestedDictionary;
Above Dictionary has a one-to-many relationship at each level from top to bottom. Adding an item is pretty easy since we ...
2
votes
4answers
1k views
Reverse IP lookup with PHP
In PHP is there a function to do a reverse lookup on a domain name to find out how many websites are hosted on the particular shared hosting server that domain name is hosted on. Or, a way to do this ...
2
votes
2answers
347 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 ...
1
vote
1answer
31 views
How to do a reverse lookup through a profile in django
So I have a class, Y, that is a profile extending User.
I have another class, X, that has a one-to-one relationship with class Y:
class X(models.Model):
y = models.ForeignKey('class Y')
Given ...
1
vote
3answers
89 views
Django - reverse lookups
For example, I have this models:
class Person(models.Model):
name = models.CharField(max_length=20)
employer = models.CharField(max_length=20)
class Car(models.Model):
person = ...
1
vote
0answers
201 views
How to call Windows gethostbyaddr API using BATCH script
I already have a small script in perl to do reverse lookup, but it is not portable unless the other machine also has perl installed. I want a script that can run on colleagues machines seamlessly and ...
0
votes
2answers
131 views
How to do a reverse foreignkey lookup for all records in Django?
I'm trying to do a reversed SQL lookup using Django 1.3. I found a lot of related questions, but unfortunately I can only find the answer for doing this on a single record, not on multiple records at ...