Tagged Questions

13
votes
4answers
1k views

I just discovered why all ASP.Net websites are slow, and I am trying to work out what to do about it

I just discovered that every request in an ASP.Net web application gets a Session lock at the begging of a request, and then releases it at the end of the request!!! I mean, WTF Microsoft! In case ...
7
votes
4answers
519 views

What's a typical average number of ASP.NET sessions per CPU or per memory?

(EDIT: rewritten question to make it clearer, meaning hasn't changed) You can create an application and measure its usage. But what I would like to know, if you decide up-front about an ASP.NET ...
7
votes
7answers
260 views

Site slows for individual users, but they can switch browsers?

I've tried searching for this but it's pretty difficult to put into words. Basically, our site will run fine for most users without any issues. Sometimes though, those of us who use the site pretty ...
6
votes
3answers
5k views

SQLServer vs StateServer for ASP.NET Session State Performance

I'm studying for a MS certification and one of the practice tests I'm doing has a question where the point of contention is the performance between storing the session in SQL Server as opposed to ...
4
votes
2answers
183 views

PHP sessions, cookieless domains, and performance

I'm on board with the whole cookieless domains / CDN thing, and I understand how just sending cookies for requests to www.yourdomain.com, while setting up a separate domain like cdn.yourdomain.com to ...
4
votes
1answer
881 views

ASP.NET MVC Session state using state partitioning, MongoDB or Memcached or…?

My team is currently building a new SaaS application for our company (Amilia.com). We are in "alpha" release and the application was built to be deployed on a web farm. For our session provider, we ...
4
votes
3answers
201 views

Are sessions faster than querying the database?

So for example, the user is logging in, and the system is storing informations about them example: birth date, so is faster to get this information from the session, or to query the database for it? ...
4
votes
2answers
388 views

Array, Dictionary or List in a session?

What would be the most efficient way of storing a set of values in a session? I'm guessing it's either a List/Array or Dictionary. Basically, when a user selects an item from a DropDownList, a value ...
4
votes
2answers
77 views

Should I be calling a variable that holds a SESSION value instead of calling the actual session in PHP?

If a PHP session variable is stored on file (like it is by default) then let's say I store a user's name into a session variable... $_SESSION['username'] = 'Jason Davis'; Now when a page is ...
4
votes
4answers
324 views

Caching data vs. writing in memory table

Which would be the best way to achieve a fast hash / session storage with one of these three ways? Way 1: Create a memory table in MySQL that stores a hash and a timestamp when the entry was created. ...
4
votes
2answers
346 views

How Do I Track and Eliminate Session Abuse?

I'm pretty sure that there have been developers in the past that have severely abused our poor friend ASP.NET session state. Session would love to help track things between requests, but can only do ...
3
votes
2answers
2k views

What is the best/fastest MySQL Table Schema for temporary/rotating storage, e.g. for session management?

When it comes to writing custom MySQL database-driven PHP session management for a VERY dynamic website, what is the best (fastest read/write access) structure for your session table? Bad Example ...
2
votes
3answers
450 views

MySQL Insert Query Randomly Takes a Long Time

I am using MySQL to manage session data for my PHP application. When testing the app, it is usually very quick and responsive. However, seemingly randomly the response will stall before finally ...
2
votes
2answers
397 views

Rails: How do I minimize DB hits here? Eager loading isn't applicable

this question is maybe a little specific, but I think it's interesting from a general pov also. In a Rails App users can subscribe to other users. When I show a list of users I have to check, if the ...
1
vote
2answers
130 views

Hibernate sessions REST performance/security

Intro I'm bulding a REST web service using Hibernate and Jersey to supply JSON data to mobile clients. I have a general question about how to deal with Hibernate sessions internally. There are two ...
1
vote
1answer
409 views

the number of users online and number of active session

My environment is ASP.Net + IIS 7.0 + Windows Server 2008 + .Net 3.5. I am wondering whether the number of users online and number of active session are the same thing? The other question is, no ...
1
vote
0answers
144 views

ASP.NET request spending time in ACQUIRE_REQUEST_STATE

In View Currently Executing Requests in IIS7 I can see some requests in the RequestAcquireState with really high Time Elapsed, e.g. 7 seconds If I understand correctly this means that 7 seconds were ...
1
vote
1answer
557 views

Extremely large amount of data in jos_session

I noticed yesterday that my joomla/virtuemart site was becoming very slow. I contacted the hosting provider and they told me about queries to jos_session. I looked in phpmyadmin at the table ...
1
vote
1answer
87 views

ASP.NET Session Load Performance

I need to calculate some performance numbers for a few custom session storage providers. I need to know how long it takes to rehydrate session and how long it takes to persist it back to the store. ...
1
vote
3answers
227 views

Sessions and performance in asp.net MVC

Is it true that asp.net MVC doesn't use SESSIONS [Sessions varibale] and hence there it's performance is better than asp.net webform. if this is not the case then why the speed of asp.net MVC is ...
1
vote
2answers
257 views

ASP.NET MVC 2 - Avoiding repeatedly querying the database for static data?

What can I do to avoid the repeated loading of static data every time a page is loaded in ASP.NET MVC2? This is pretty wasteful, and I would like to fix it. My master page has the typical User Name + ...
1
vote
3answers
2k views

Is it possible to disable user sessions for guest in Joomla 1.5

Is it possible to disable session handling in Joomla 1.5 for guests. I donot use user system in the frontend, i assumed that it's not needed to run queries like below: Site will use APC or Memcache ...
1
vote
1answer
164 views

PHP session slowdown

I am having massive performance problems on a site running two versions of the same CMS using PHP sessions. A page will take 5-6 seconds to load on one computer, and 300ms on the other. I'm fairly ...
1
vote
4answers
435 views

In ASP.NET, is it OK to store user-specific data in profile with a caching mechanism rather than in session?

I have been reading articles about state management in ASP.NET for few days for my web application. In this application, one user can create/save/execute queries, and I need to keep each parameter of ...
1
vote
3answers
304 views

PHP; use sessions or re-use query?

I'm interested in what is the more efficient way of handling user data in my game. When someone is playing the game, data from the server will constantly need to be queried from the database. So I ...
1
vote
2answers
793 views

php: sessions vs. database

I have a class that retrieves its memeber (more or less 10 members) from a database. My question is: is it more efficient to fetch them every time from the db (MySQL), leaving just an ID in the ...
0
votes
2answers
63 views

Cost of a Session call?

When wrapping my Session variables in Page Properties, does it make sense to save the value into a local variable and prefer to call the value from there? private Foo MySessionFoo { get { ...
0
votes
2answers
57 views

Resource usage of session_start()

I use $_SESSION for authentication of users, but I was thinking about storing other variable in session too. However, I have no idea how much session may use resources on the server. I mean is it ...
0
votes
3answers
156 views

Why can't destroy just one session

Q: I know that to destroy all sessions , i can use: Session.Abandon() According to my question. but why there is n't any equivalent method to destroy only one session. and i am supposed to use ...
0
votes
1answer
102 views

PHP Session Variable Performance

I was wondering if the code below was the most efficient use of session variables in PHP. <? session_start(); if (!isset($_SESSION['count']) || !isset($_SESSION['randomArray'])) { $count = 0; ...
0
votes
0answers
62 views

Lazy loading a session in Rails while using flash

In Rails 2.3, sessions are lazy loaded. Therefore, you can't disable them. Does calling flash.keep cause the session to be loaded? If it does, what's the recommended way to keep the flash without ...
0
votes
1answer
155 views

PHP: Default /tmp sessions VS session_set_save_handler() performance

During my research I have found opinions pointing in both directions on this issue. A discussion would be appreciated to clarify this issue. We are aware of the obvious advantageous security aspects ...
0
votes
0answers
183 views

Storing information in HttpSession and UserDetails (Spring Framework), some questions and other possible solutions

I work with Spring Framework 3.0.5 and I develope a web application. Ive got one question regarding the use of HttpSession and UserDetailsImpl-Objects. I need some imformations be stored with a ...
0
votes
5answers
221 views

session and performance

Q: My team leader tell me to increase the time of session to one hour , to give the users the chance to work on their data, when i tell him about the performance , and this will be a load over the ...
0
votes
1answer
206 views

does Apache caches the SESSION data in memory when I use the file handler for session?

In PHP, when I use the file handler for session storing,does Apache caches the SESSION in memory? If not, would a usage of db storage engine on memory tables (mysql) would be a good idea?
0
votes
4answers
757 views

Accessing Session variable and performance

I have a web application inside where i need to check whether the user has sufficient permissions / roles/rights to access the page. I had set the users rights in a table with USER_ID, ROLE_ID. and ...
0
votes
2answers
565 views

Caching database data in Session - getting the balance right

If you cache data from your database in ASP.NET Session then you will speed up subsequent requests for that data (note: depending on the serialization/deserialization cost of the data concerned), at ...
0
votes
3answers
65 views

Considerations for updating a 'SiteVisit' row many times over a session

SQL Server 2005: I have a SiteVisit row which contains information about a users visit, for instance HttpRefer, whether or not they placed an order, browser, etc. Currently for reporting I am ...
-1
votes
2answers
68 views

Is it a bad idea to store my 6 months expirations sessions in database?

I've around 500,000 unique visitors, and I want my visitors be able to use my website a bit like StackOverflow. I mean you don't need to register but you have kind of an account which stores some ...