I'm considering deploying an application that will us an IP address locaiton
database provided by Ip2location.com... http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering
which of the two options would be best.
1) read data from the binary files (~27 mb or so)
2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this
DB to get the City info from the DB when a visitor first visits the site
(based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would
a high traffic webisite be able to use a serialized file efficiently if the
file was read often?
Thanks! 10 2284
Fabuloussites wrote: I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
I don't see reading from a file as a big problem (open read-only), but
that's still a fair amount of data to parse (27MB). A database can
handle that much data easily (they can handle many GBs of data no
problem). Perhaps the best thing to do would be to benchmark both (like
say, query it 1000 times each ways and compare how much time it took)
and to do some load testing (not just 1 request after each other but
many simultaneous queries). My guess is that the results (which one
works best) will vary depending on how much traffic you have, the load
on the server as well as the load on the database server. It's hard to
predict accurately what would work best.
If you didn't need the city I'd recommend you have a look at this
article http://www.eggheadcafe.com/articles/20051109.asp which manages
to do it all in RAM (no file access or DB queries).
Actually,
you can get all this information for free without a database
by using the MSN Virtual Earth script generated by this URL: http://local.live.com/WiFiIPService/locate.ashx
What this does is return a function, SetAutoLocateViewport, that you can use
with the MapControl.js VE Maps control. which can also be used to lookup the
city, state information.
SetAutoLocateViewport(28.5418, -81.3736, 10, false, 'Virtual Earth has
determined your location by using your computer\'s IP address.');
Note that the first two parameters represent the latitude and longitude of
the IPAddress represented by your REMOTE_HOST server variables.
Here's an article I did on this with more info (and a much smaller database,
in binary form as an embedded resource): http://www.eggheadcafe.com/articles/20051109.asp
I am not familiar with how efficient their binary file lookup is, probably
the best way to find out is to ask the vendor. I suspect since they expect
high-volume usage that they've figured out how to optimize it.
Peter
--
Co-founder, Eggheadcafe.com developer portal: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
"Fabuloussites" wrote: I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
Thanks for the useful information. I was not aware of the localive service.
However, i've notice that i'm getting a consistent "Server currently busy,
Try again Later" message. Is there a commercial web service that will be
more reliable? Will this web service remain free?
thanks!
"Peter Bromberg [C# MVP]" wrote: Actually, you can get all this information for free without a database by using the MSN Virtual Earth script generated by this URL:
http://local.live.com/WiFiIPService/locate.ashx
What this does is return a function, SetAutoLocateViewport, that you can use with the MapControl.js VE Maps control. which can also be used to lookup the city, state information.
SetAutoLocateViewport(28.5418, -81.3736, 10, false, 'Virtual Earth has determined your location by using your computer\'s IP address.');
Note that the first two parameters represent the latitude and longitude of the IPAddress represented by your REMOTE_HOST server variables.
Here's an article I did on this with more info (and a much smaller database, in binary form as an embedded resource):
http://www.eggheadcafe.com/articles/20051109.asp
I am not familiar with how efficient their binary file lookup is, probably the best way to find out is to ask the vendor. I suspect since they expect high-volume usage that they've figured out how to optimize it.
Peter -- Co-founder, Eggheadcafe.com developer portal: http://www.eggheadcafe.com UnBlog: http://petesbloggerama.blogspot.com
"Fabuloussites" wrote:
I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
i found info on the live local service. Looks like it is still in beta
format. http://download.microsoft.com/downlo...veLocalFAQ.doc
thanks for the info. i think i will try to get access to a sample database
and use your methods to make my own binary files. their component only works
with dot net 1.x and i want to use a 2.0 app.
thanks!
"Fabuloussites" wrote: Thanks for the useful information. I was not aware of the localive service. However, i've notice that i'm getting a consistent "Server currently busy, Try again Later" message. Is there a commercial web service that will be more reliable? Will this web service remain free?
thanks! "Peter Bromberg [C# MVP]" wrote:
Actually, you can get all this information for free without a database by using the MSN Virtual Earth script generated by this URL:
http://local.live.com/WiFiIPService/locate.ashx
What this does is return a function, SetAutoLocateViewport, that you can use with the MapControl.js VE Maps control. which can also be used to lookup the city, state information.
SetAutoLocateViewport(28.5418, -81.3736, 10, false, 'Virtual Earth has determined your location by using your computer\'s IP address.');
Note that the first two parameters represent the latitude and longitude of the IPAddress represented by your REMOTE_HOST server variables.
Here's an article I did on this with more info (and a much smaller database, in binary form as an embedded resource):
http://www.eggheadcafe.com/articles/20051109.asp
I am not familiar with how efficient their binary file lookup is, probably the best way to find out is to ask the vendor. I suspect since they expect high-volume usage that they've figured out how to optimize it.
Peter -- Co-founder, Eggheadcafe.com developer portal: http://www.eggheadcafe.com UnBlog: http://petesbloggerama.blogspot.com
"Fabuloussites" wrote:
I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
If it's only 27mb, why not just read the whole thing and put it in memory?
"Fabuloussites" <Fa***********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com... I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
As mentioned before, i'm really new to this type of situation. So, i was
just trying to get some input regaring the performance of using a binary
file, vs a SQL server.
"PJ" wrote: If it's only 27mb, why not just read the whole thing and put it in memory?
"Fabuloussites" <Fa***********@discussions.microsoft.com> wrote in message news:D3**********************************@microsof t.com... I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
either way it's a wash if you just cache the information and code something
to update the cache every....what....day? how often does city state
information change?
"Fabuloussites" <Fa***********@discussions.microsoft.com> wrote in message
news:83**********************************@microsof t.com... As mentioned before, i'm really new to this type of situation. So, i was just trying to get some input regaring the performance of using a binary file, vs a SQL server.
"PJ" wrote:
If it's only 27mb, why not just read the whole thing and put it in memory?
"Fabuloussites" <Fa***********@discussions.microsoft.com> wrote in message news:D3**********************************@microsof t.com... > I'm considering deploying an application that will us an IP address > locaiton > database provided by Ip2location.com... > > http://www.ip2location.net/ip2locati...component.aspx > > their .net component reads data from a binary file. I'm guess i'm > wondering > which of the two options would be best. > > 1) read data from the binary files (~27 mb or so) > 2) or query a sql DB with the same info. > > The database will have about 8 columns and ~ 1.8 millions rows. > > i'm developing for a high traffic webisite, and i would like to query > this > DB to get the City info from the DB when a visitor first visits the > site > (based on their ip address). > > Also, how do serialized binary files handle simultaneous file access? > Would > a high traffic webisite be able to use a serialized file efficiently if > the > file was read often? > > Thanks!
I see you point. my concern is that i'm going to query this data for every
visitor to the website to determine what content to show them. So, this info
will be queried when a user first visits the site to obtain the city/state
info and store it in a cookie or something. So, i was not sure how accessing
1.8 million rows of data would impact the performace if the site had high
traffic.
"PJ" wrote: either way it's a wash if you just cache the information and code something to update the cache every....what....day? how often does city state information change?
"Fabuloussites" <Fa***********@discussions.microsoft.com> wrote in message news:83**********************************@microsof t.com... As mentioned before, i'm really new to this type of situation. So, i was just trying to get some input regaring the performance of using a binary file, vs a SQL server.
"PJ" wrote:
If it's only 27mb, why not just read the whole thing and put it in memory?
"Fabuloussites" <Fa***********@discussions.microsoft.com> wrote in message news:D3**********************************@microsof t.com... > I'm considering deploying an application that will us an IP address > locaiton > database provided by Ip2location.com... > > http://www.ip2location.net/ip2locati...component.aspx > > their .net component reads data from a binary file. I'm guess i'm > wondering > which of the two options would be best. > > 1) read data from the binary files (~27 mb or so) > 2) or query a sql DB with the same info. > > The database will have about 8 columns and ~ 1.8 millions rows. > > i'm developing for a high traffic webisite, and i would like to query > this > DB to get the City info from the DB when a visitor first visits the > site > (based on their ip address). > > Also, how do serialized binary files handle simultaneous file access? > Would > a high traffic webisite be able to use a serialized file efficiently if > the > file was read often? > > Thanks!
A properly setup database will perform better, I believe.
But testing is the only way to check for sure.
...
You need to properly index the table, esp with that many rows.
The addage of "if the column is in the where clause, then index it" may
not be sufficient here. You need to determine the exact query usage. www.sqlservercentral.com would be a good resource for that kind of sql
server performance question.
Fabuloussites wrote: I'm considering deploying an application that will us an IP address locaiton database provided by Ip2location.com...
http://www.ip2location.net/ip2locati...component.aspx
their .net component reads data from a binary file. I'm guess i'm wondering which of the two options would be best.
1) read data from the binary files (~27 mb or so) 2) or query a sql DB with the same info.
The database will have about 8 columns and ~ 1.8 millions rows.
i'm developing for a high traffic webisite, and i would like to query this DB to get the City info from the DB when a visitor first visits the site (based on their ip address).
Also, how do serialized binary files handle simultaneous file access? Would a high traffic webisite be able to use a serialized file efficiently if the file was read often?
Thanks!
However, i've notice that i'm getting a consistent "Server currently busy,
Try again Later" message. Is there a commercial web service that will be
more reliable? Will this web service remain free?
You need to use the https location, and not the http one.
I had the same problem when trying to write a replacement for the activex control on linux, so i ended up with this prototype: - #!/bin/sh
-
#
-
# local.live.com's "locate me" 4 linux
-
# 2006-03-19:jpa: i'like one liners...
-
GET `iwlist scan 2>/dev/null |fgrep -e Address -e ESSID -e Quality|perl -e 'print "https://local.live.com/locate.ashx?pos="; my $mac, $level ; while(<>){chomp; if(/.*Address: (.*)/) { $mac = $1;} if(/.*level=(.*) dBm/){ $level=$1; print "$mac^^$level|";}; }; print "\n";'`|sed -n 's/.*(\([^,]*\),[ ]*\([^,]*\),.*/\1,\2/p'
-
echo
-
--
jpa
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Sebastian Kemi |
last post by:
How should a write a class to a file?
Would this example work:
object *myobject = 0;
tfile.write(reinterpret_cast<char *>(myobject), sizeof(*object));
/ sebek
|
by: kevininstructor |
last post by:
I created two classes called "site" and "Sites" which use 'BinaryFormatter'
to load and save class information to a disk file. In my test application
all works fine but when implementing into...
|
by: Geo |
last post by:
Hi,
Im running into a strange problem here!
I have created a linked server on one of my SQL Servers (local server).
Lets call the linked server as LS1.
I have an sproc which resides on the...
|
by: Lance |
last post by:
Is there any way to determine the type of an object that
is stored as a serialized file without deserializing the
entire file? If possible, I'm interested in being able to
do this for both binary...
|
by: John Dann |
last post by:
I'm trying to read some binary data from a file created by another
program. I know the binary file format but can't change or control the
format. The binary data is organised such that it should...
|
by: gauravkhanna |
last post by:
Hi All
I need some help for the below problem:
Scenario
We need to send large binary files (audio file of about 10 MB or so)
from the client machine (.Net Windows based application, located...
|
by: David Purton |
last post by:
Hi,
I have some ASP code to stream a binary file. It works well and looks
something like the original ASP code shown below.
I'm experimenting in creating ZIP files on the fly and am trying to...
|
by: MMiGG |
last post by:
Hi
Our project need parse JAVA serialized object string in C, has any library?
Thanx
|
by: sebastian.harko |
last post by:
Helllo,
What's the general accepted strategy for dealing with very large
binary files in C# ?
I have to do a program that reads some "multi frame bitmap " files
which can reach up to one...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |