Tagged Questions
The connections tag has no wiki summary.
10
votes
5answers
219 views
Some way to guess the speed of client connection
I have to do dynamic decision about the contents weight to send to the client based on his/her connection speed.
That is: if the client is using a mobile device with 3G (or slower) connection, I send ...
9
votes
4answers
453 views
Where to store database login credentials for a PHP application
We have a development server and a live server with different database connection details (username, password, etc).
Currently we're storing BOTH the database connection details in a initial.php and ...
9
votes
2answers
2k views
How do multiple clients connect simultaneously to one port, say 80, on a server?
I understand the basics of how ports work. However, what I don't get is how multiple clients can simultaneously connect to say port 80. I know each client has a unique (for their machine) port. Does ...
9
votes
2answers
584 views
How do you measure the number of open database connections
I am trying to determine if I have a database connection leak.
So I need to see the number of open connections.
I have some simple test code that creates a leak:
protected void Page_Load(object ...
9
votes
2answers
922 views
Entity Framework - How should I instance my “Entities” object
I'm a total newbie at Entity Framework and ASP.Net MVC, having learned mostly from tutorials, without having a deep understanding of either. (I do have experience on .Net 2.0, ADO.Net and WebForms)
...
8
votes
2answers
904 views
Using R to download zipped data file, extract, and import data
@EZGraphs on Twitter writes:
"Lots of online csvs are zipped. Is there a way to download, unzip the archive, and load the data to a data.frame using R? #Rstats"
I was also trying to do this today, ...
7
votes
1answer
2k views
When does Entity Framework open and close Database Connections?
When I instance my "Entities" object in Entity Framework, and make a couple of queries using that Entities object, what happens to connections?
Does it open a connection when I instance the object, ...
6
votes
5answers
914 views
.Net opening and closing database connections
I designed the data access portion of our framework so that every time a business object needs to interact with the database it would have to open a connection, invoke the data access layer (to ...
5
votes
1answer
956 views
Delphi: Limiting TCP connections
I'm using the TServerSocket component in my Delphi application. I would like to limit client connections, let's say to one thousand. Unfortunately i don't know how to do that. The component does not ...
4
votes
1answer
192 views
How should I set up mongodb cluster to handle 20K+ simultaneous
My application uses MongoDB as database. We are expecting 20K+ simultaneous connections to mongodb cluster. How should I config the server if I want to run the mongodb on 20 servers and shard the ...
4
votes
4answers
250 views
Safe way to iterate over multiple databases in Rails
I have several Rails apps running on a single MySQL server. All of them run the same app, and all of the databases have the same schema, but each database belongs to a different customer.
...
4
votes
3answers
171 views
Is it possible to restrict the number of connections for a role/login in SQL Server 2005?
e.g. Make it so that you could limit it to a max 2 connections for a given technical account, the third connection being blocked repeatedly until one of the others is given up
4
votes
5answers
3k views
How to limit / throttle bandwidth with *multiple* connections
I'm writing an app in C# that downloads concurrently (in different threads) using multiple connections to multiple servers,
and I'd like to be able to limit the used bandwidth.
For a single ...
3
votes
3answers
86 views
Check if a specific mysql connection already exists during a php script?
I have a class for each database table object. Each class takes care of connection/queries/data format (database table specific logic) as I prefer to assign a connection for each class for better ...
3
votes
1answer
152 views
mongodb & max connections
i am going to have a website with 20k+ concurrent users.
i am going to use mongodb using one management node and 3 or more nodes for data sharding.
now my problem is maximum connections. if i have ...
3
votes
3answers
107 views
Persisting 140 TCP connections?
We are currently investigating the most efficient way of communicating between 120-140 embedded hardware devices running on the .NET Micro framework and a server.
Each embedded device needs to send ...
3
votes
1answer
274 views
Mongo opens too many connections
I am trying to write a lot of data to MongoDB, in a Java loop. I am getting errors based on the number of connections open.
My theory is that since MongoDB is not transactional, lots of connections ...
3
votes
3answers
202 views
Using R to download gzipped data file, extract, and import data
A follow up to this question: How can I download and uncompress a gzipped file using R? For example (from the UCI Machine Learning Repository), I have a file of insurance data. How can I download it ...
3
votes
4answers
205 views
How many Azure instances to support 1000 connections
If I have a WCF service hosted in an Azure webrole, how many small machine instances would I need to spin up so that potentially 1000 clients could be connected at once?
Processing power is not the ...
3
votes
3answers
2k views
HttpsURLConnection and intermittent connections
I'm hoping someone could help me out with intermittent connections I'm
getting using code with HttpsURLConnection. The code I'm using is
below:
HttpsURLConnection conn = (HttpsURLConnection) ...
3
votes
1answer
155 views
How provide own Sent Messages in Interface Builder
I cannot find documents about the way, in which Interface Builder determines the Sent Message outlets for the graphical connections between components triggering events and messages of other ...
3
votes
9answers
3k views
What is Sqlite used for?
I don't know how authoritative this is but I found this:
http://www.sqlite.org/cvstrac/wiki?p=PerformanceConsiderations
and it doesn't seem good to have a lot of connections to sqlite. This seems ...
3
votes
2answers
32k views
Increasing the maximum number of tcp/ip connections in linux
I am programming a server and it seems like my number of connections is being limited since my bandwidth isn't being saturated even when I've set the number of connections to "unlimited."
How can I ...
2
votes
1answer
34 views
Connecting Multiple Visual Web Parts and persisting the ViewModel
I currently have several web parts:
EmailValidation
PrimaryDetails
AdditionalDetails
These are currently all connected together using similar logic to this and share a common ...
2
votes
1answer
64 views
What's an appropriate timeout for connections on mobiles devices?
I was wondering if anybody knows, or has any information about, what could the best timeout for internet connections on mobile devices (particularly Android).
Since they have limited internet access ...
2
votes
1answer
89 views
Referencing Bindings in Connections Inspector
I'm new to Xcode 4.2, and I have a sample code from Apple, and I'm playing with it to make myself familiar with Xcode.
I made a similar project with that of Apple's, and one button of my project (in ...
2
votes
1answer
115 views
Database Connections Aren't Closing
I'm using spring 3.0 (jdbcTemplate), Tomcat, MySQL and C3p0 to handle my database activities. I'm using both jdbctemplate and simplejdbctemplate which will take care of creating and closing ...
2
votes
3answers
67 views
Can an persistent HTTP client send more than one request at a time?
I am writing a HTTP proxy server and I noticed that many clients use the "Connection: Keep-Alive" header to keep a persistent connection. Is it possible that the client sends another HTTP request ...
2
votes
1answer
114 views
Multiple non-simultaneous Java client-server connections using always the same port
I'm trying to test a scenario where one server accepts connections(one each time) from one client, using always the same ports(on the server and on the client side).
The purpose is to have 1 client ...
2
votes
8answers
557 views
C++ Benchmark tool
I have some application, which makes database requests. I guess it doesn't actually matter, what kind of the database I am using, but let's say it's a simple SQLite-driven database.
Now, this ...
2
votes
2answers
110 views
Two db connect files
I am using one db file to connect to the database. However, i need to show something else from another db database on this site. I can't use two db connect files. So, how do i go about display one ...
2
votes
1answer
392 views
C# HTTP request Max connections
We have a number of webservers(15) and for each server have a number of URLs(30).
I have written a Windows Desktop app that goes out and hits each server and each url combo. (using the ...
2
votes
4answers
469 views
Number of concurrent Sql Server connections
I am creating a .net application, with a Sql Server db engine. I would like my site to be accessed by thousands of users per second. What does the number of connections rely on?
How many connection ...
2
votes
3answers
174 views
Testing http connections on device
Hallo, developing a bb app I need to make http connections to get files, images etc.
In simulator all works, but not in device.
I bought a BlackBerry but I want to test my app without a sim then ...
2
votes
2answers
775 views
Intermittent “No Database Selected” in PHP/MySQL?
Have a PHP/MySQL form with a dropdown box containing a list of 350 names. When any random name is selected, sometimes it works & displays info about that name from the database, and sometimes the ...
2
votes
3answers
163 views
Identifying connections and active SQL in SQL Server
How do I see the currently executing SQL statements in SQL Server? I've poked around in SQL Server Management Studio, but I don't see anything "canned".
2
votes
1answer
617 views
Standalone Tomcat 6.0.* + 20,000 simultaneous connections
Does anyone know how to configure Tomcat 6.0 as a standalone web server (on Windows XP) that can handle 20,000 simultaneous connections? Please help me.
2
votes
1answer
1k views
How many maximum connections can oracle have?
How many maximum number of connections can oracle handle ?
The following is a summary for my sql, i need similar stats for oracle :
The maximum number of connections MySQL can support depends on the ...
1
vote
2answers
23 views
Monitor active server connections using PHP
I want to be able to keep a track of active connections to my server. Specifically I want to keep a track of how long users spend streaming MP3 files so I can use this information to build statistics ...
1
vote
0answers
64 views
Tornado connections not closing in freeBSD
I have a tornado web server, something like :
app = tornado.web.Application(handlersList,log_function=printIt)
app.listen(port)
serverInstance = tornado.ioloop.IOLoop.instance()
...
1
vote
3answers
311 views
MongoDB Optimal Performance - How Many Persistent Connections
I have a mongodb server in production serving on an EC2 instance. According to the mongodb official documentation, persistent DB connections should ALWAYS be used in production. I've been ...
1
vote
1answer
121 views
MySQL Sleeping Threads Eating up all my Connections
I've been continually getting "Too many connections" errors on my site which uses php and mysql. In looking at information from mytop (show processlist), I find that nearly all of these connections ...
1
vote
0answers
72 views
Python cookielib and urllib2 max connections?
I have made a URL scanner that relies on cookielib and urllib2 to scan webpages. I have noticed that every time I reach 100 connections that the program just stops with no error. I am assuming the ...
1
vote
4answers
69 views
PHP: Mysql connections
I am implementing a script on a site where they don't want to give me access to their main database, so they made a second database for me. However, after calling the function that connects to my ...
1
vote
0answers
248 views
Multiple Http connections in Android
I have a thread that is used to access a web server and retrieve some data when the data is available. This is a COMET implementation, so the server doesn't return the response until data is ...
1
vote
1answer
222 views
Memcached connections maxed out
I am running a very large Rails app. We use a pool of Memcached servers and the Evan Reaver's gem memcached, and have two namespaces one for the object/fragments and one for sessions.
We use half ...
1
vote
1answer
85 views
Multiple HTTP queries on a single connection
Is it possible a Web client to send multiple HTTP queries to a server using only one connection (server IP, server Port, client IP and client Port are the same without "restarting" the connection).
1
vote
2answers
1k views
Using JavaMail to send email, getting “Connection refused” because of “too many connections” - why?
My site is based on JSP pages and servlets. I run Tomcat 6 on my vps.
I'm using JavaMail version 1.4 to send emails on my site.
I can send off a few emails during my session, but today I got a ...
1
vote
2answers
547 views
postgres connections exceeding max_connections?
we are running a very connection-heavy, insert-heavy postgres database (to the point that we should've done some connection pooling, but there's no time now).
when doing some troubleshooting, i was ...
1
vote
2answers
812 views
MaxUserPort setting not being used by windows 2003 server?
i am using MaxUserPort setting (with 65000 as its value) in the registry on one of my servers (windows 2003 server). this was done to enable the box to handle a certain load profile. the setting has ...