Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

recently i've used Maxmind geoip to locate country & city based on the ip. It has huge content inside the dat files. but retrieving of those records happens within a seconds. so i'm so curious to learn and use the technology in php.

First i've seen some video files are using this .dat extension files and now text information. so what is .dat extension actually? is it possible to read and write in php.

Thanks!

share|improve this question

3 Answers

up vote 4 down vote accepted

For what I know, dat extension means a generic file in which you could write what you need, in the format you please.
I mean, in every file you could do that, but generally if you find an xml file you assume that inside you find xml formatted text; on the contrary dat files are not recognized as something you can decode with a specific software if you don't know who and how wrote it.

share|improve this answer
Yes Marco, it isn't a standard format. But what i noticed is, they've a huge list of city,country database inside the dat file and it's been retrieved within a second. that is why i'm interested to use it. I think you are trying mean, we don't know what method they used to create that dat file. is it so? – Sekar Sep 6 '11 at 8:28
The method used to create it does not matter. The format in which data is stored does. – Mchl Sep 6 '11 at 8:30
1  
@Sekar: I mean that to parse a file you must know how data inside is organized. Then we could _study" if cities are alphabetically sorted and if data is well structured to be retrieved quickly. This could make a great difference in time. – Marco Sep 6 '11 at 8:31
@Marco: they should've well structured, that's why retrieval is so quick. will they answer it, if we raise any support tickets? ;) – Sekar Sep 6 '11 at 9:28
@Sekar: I don't know if they like you could read their file with another software that's not the one developed from them... Anyway, give them a chance: ask them and wait for their answer. Can you post a little bunch of that file? Is it ascii or binary? Please: post it editing your question, not in a comment! – Marco Sep 6 '11 at 9:34
show 5 more comments

The files will most likely be in a custom format that they developed; if it's open source you could reimplement it in PHP (if it isn't already written in PHP), or maybe access the data through an API.

The speed will come from the fact that it'll be indexed in some way, or it's like "for every record move 100 bytes further into the file".

share|improve this answer

There's a lot of questions here.

First, the file is a database - it stores data. There are lots of database models - relational, herarchical, object-oriented, vector, hypercube, keystore....there are implementations of all these available off the shelf.

Some databases are more apposite to managing particular data structures than others. Geospatial data is a common specialization - so much so that a lot of other database types will provide vector functionality (e.g. mysql and postgresql which are relational databases).

For most database systems, the application using the services of the database does not access the data file directly - instead access is mediated via another process - this is particularly relevant for PHP since it typically runs as multiple independent processes with no sophisticated file locking functionality.

So if you were looking to implement IP to geography info yourself, I'd recommend sticking to a relational database or a nosql keystore (you don't need the geospatial stuff for forward lookups).

But do bear in mind that IP to geo lookup data is not nearly as accurate/precise as the peolpe selling the products would have you believe. If your objective is to get accurate position information about your users, the HTML5 geolocation API provides much better data - the problem is availability of the functionality on user's browsers.

share|improve this answer
thanks for your efforts. but my question is on reading and writing .dat files using php. to explain why i'm interested on the technology i used maxminds geolocator as an example. i knew that city information are only 80% accurate, but i tried to mean having those huge datas they're able to retrieve in a second for any given ip. – Sekar Sep 6 '11 at 9:24
1  
@Sekar: You're missing the point. Yes, to quite a large extent the data structure affects performance - but there are already very efficient implementations of data access layers using different data models available where you can see the code and datastructures for yourself. GeoIP lookup is NOT a huge dataset (approx 20 million addresses - the reason why this is not 4.3 billion should be obvious - but even that is not a huge dataset). If my queries took a second to complete (on much larger datasets) I'd be very concerned about the performance. – symcbean Sep 7 '11 at 10:18
yeah! that was a valid point, the dat files comes around around 20 mb only. May be that is the reason for the performance.Thanks. – Sekar Sep 7 '11 at 10:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.