Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
8answers
6k views

Max parallel http connections in a browser?

I am creating some suspended connections to an http server (comet, reverse ajax, etc). It works ok, but I see the browser only allows two suspended connections to a given domain simultaneously. So if ...
3
votes
1answer
1k views

Need help with setting up comet code

Does anyone know off a way or maybe think its possible to connect Node.js with Nginx http push module to maintain a persistent connection between client and browser. I am new to comet so just don't ...
2
votes
1answer
36 views

pg_close when using persistent postgres connections?

when using pg_pconnect connections to connect from php to postgres, does pg_close : really close the connection (ruining the persistent effect) ? hand over the connection to the pconnect pool ?
2
votes
1answer
314 views

CodeIgniter Multiple Databases Persistent Connection?

I'm using multiple database in my CodeIgniter application and have been reading a lot that persistent connections should be turned off. Why is this measure recommended and is this still necessary in ...
2
votes
2answers
441 views

Persistent TCP connections, long timeouts, and IP hopping mobile devices

We have an app with a long polling scheme over HTTP (although this question could apply to any TCP-based protocol). Our timeout is fairly high, 30 minutes or so. What we see sometimes is mobile ...
2
votes
1answer
870 views

MySQL Persistent Connections

I have 10 application servers and 1 mysql database. I would like to do connection pooling for mysql, but simply enabling mysql_pconnect() will not work since it'll cause some servers to have more ...
2
votes
1answer
2k views

How can I reuse a HttpClient connection efficiently?

I am doing HTTP POSTs very frequently (>= 1/sec) to an API endpoint and I want to make sure I'm doing it efficiently. My goal is to succeed or fail as soon as possible, especially since I have ...
2
votes
3answers
1k views

Tornado Web Framework Mysql connection handling

I have recently been exploring the Tornado web framework to serve a lot of consistent connections by lots of different clients. I have a request handler that basically takes an RSA encrypted string ...
2
votes
3answers
797 views

Tornado Web & Persistent Connections

How can I write Http server in TornadoWeb that will support persistent Connections. I mean will be able to receive many requests and answer to them without closing connection. How does it actually ...
1
vote
1answer
24 views

osCommerce: Use persistent connection

I have here a osCommerce 2.2-MS2. I had some settings before which were working fine. Now I changed the settings for the connection to the database (username, password, database, ...) but didn't ...
1
vote
2answers
136 views

How to add persistent connection support to a load-balanced HTTP webservice

We are working on an HTTP webservice load-balanced using haproxy. The webservice is accessed via SSL. It is a RESTful HTTP service and simply accepts JSON, does some work, and returns JSON. There is ...
1
vote
1answer
140 views

Implement long-polling API with Symfony

I am trying to implement an API which uses the long-polling concept in Symfony framework. Let's say that I have a table 'feeds' which can only grow (assume that users can insert thier feed from other ...
1
vote
1answer
422 views

Push Messages from Azure application to MonoTouch (iPhone) application without Apple Push Notifications

I'm currently designing an application for iOS (using MonoTouch) that will have a server component running on Windows Azure. The application will essentially be a chat type application where users ...
1
vote
4answers
122 views

persistent php connection?

Is it possible to have a php script pause at a certain point wait for an ajax response, then continue executing? If not, what is the most appropriate way to store the current state of a script (all ...
1
vote
4answers
271 views

Persist an FTP connection PHP resource across AJAX calls

I have a multi-user PHP web application that can interact with an FTP server via AJAX. The application allows the user to browse an FTP site. Javascript makes an AJAX call which communicates with a ...
1
vote
3answers
933 views

Persistent SMTP connection in PHPMailer

How to enable persistent SMTP connections in PHPMailer? I will send many emails, so with persistent connections probably I will get performance gain.
1
vote
4answers
1k views

Persistent connections between Flash client and Java server

I'm new to Flash. I'm planning to create a game client in Flash (running in browser) that needs to talk to a server written in Java. Connection between client and server needs to be persistent. I'm ...
0
votes
1answer
29 views

Java Server - TCP Socket detect EOF without closing the socket connection

Is there a way to detect the EOF when reading from a TCP Socket whilst the socket connection stays open? Most of the examples I have seen are something along the lines of: int n=0; While((n = ...
0
votes
1answer
33 views

How do I implement shared state in an ASP.NET MVC 3 application?

I'm writing a basic RESTful service, and decided I'd use ASP.NET MVC 3 for the task. My application is going to be responsible for maintaining a persistent connection to a server per user (for now). I ...
0
votes
1answer
20 views

What else to keep in mind when using mysql_pconnect in AJAX calls

I build an application (MySQL/PHP) which (in time) may use connections to distant (and maybe slow) MySQL servers. The app uses AJAX whispers which open the DB connections frequently. I have done some ...
0
votes
0answers
281 views

CFNetwork Persistent Connection (Keep alives)

I am trying to reduce our server overheads by using persistent HTTP connections via the Apple CFNetwork framework. However there is little documentation about it. The only information I could find ...
0
votes
2answers
97 views

Could you please assist me with PHP 5.3 and MySQL 5.5 stored procedures and mysqli library + persistent connection

Helo, I have a stored procedure that has 7 IN parameters and 3 OUT parameters. I need to pass 7 parameters IN from PHP, execute the query with procedure, and retrieve the 3 OUT parameters. I am ...
0
votes
2answers
46 views

what signals the client sending of next request in HTTP persistent connections

In HTTP/1.1 (persistent connections), what is the "signal" which prompts the client to send the next HTTP request? Is there anything else besides Content-Length? I'm trying to build a simple gateway, ...
0
votes
1answer
48 views

Core Data Error: Which are the most common mistakes to get a error in persistentstore coordinator?

enter code hereIn my Application I am using Sqlite as an externel data base. So, Please Reply.I am using Xcode finding defficult to communicate to the sqlite file and Managed Object Model.. ...
0
votes
0answers
23 views

About the design principle of persistent database connection

Is it guaranteed that one persistent connection is not reused until its current user finishes using it? I'm talking about the perl DBI if that matters.
0
votes
1answer
119 views

persistent or non persistent connection in testing web service

I have a webservice. I am creating a test application to get response from this webservice. Added service reference to the web service application. Logic in my test appplication is below. for(int ...
0
votes
1answer
256 views

how to change timeout for mysql persistent connections

where is defined timeout of persistent connections? it is possible to change it? tnx in adv!
0
votes
1answer
236 views

PHP and persistent connections

Whenever I open a persistent connection to the DB , if the DB daemon crashes and is then restarted, 30% of new connections to the daemon will result in a broken pipe error. This is fixable by ...
0
votes
2answers
52 views

Optimal delivery method for a large quantity of images

I have a website centered around an online chat application where each user can have up to several hundred contacts. Each contact has there own profile image. I want to make it so that the contact's ...
0
votes
1answer
273 views

Using persistent and non-persistent connection together in a PHP MySQL app

There are parts of my app where a persistent connection is required, in particular the parts where every hour maybe 30,000 select requests are made by many different users, this is causing my mysql ...
0
votes
2answers
2k views

vb.net how to check if a network drive is mapped persistently

I use the following code to layout network drives on a system. I want to add a third column for persistence but in vb.net I do not know how to check if a drive has a persistent map or not. Any ...
0
votes
3answers
659 views

How to design a server with many persistent connections

I am designing a application where many clients connect to a central server. This server keeps these connections, sending keep-alives every half-hour. The server has a embedded HTTP server, which ...