|
Random quick question.
The System.Web.Cache class, at what level is the information stored? On a per session level or whole application level?
Thanks
Started by Sekhat on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
An instance of the cache is per app domain
AFAIK at the application level.
|
|
I am using TransactionScope s at a high level to wrap some high level code that makes a number of connections to the database.
One of the functions I call is a generic read that is used for read only functions where a read uncommitted isolation level ...
Started by tpower on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is that what you mean?
using (var blog post here .)
Hi,
You can define the Transaction Isolation level at both the connection level and the statement/transaction ....
You can set the isolation level on the TransactionScope itself.
|
|
Windows Vista has an application-level volume levels for sound devices. There is a Speaker (master volume), an "application" Windows Sounds and further applications.
What makes the system to forget the volume level for Windows Sounds .
Started by Toro on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Then it seems like the next time I hear a windows beep or some other system sound it... .
Then I'll increase only one of the application sliders from within the software in question .
I'll have my master volume set at a certain place .
I've noticed this also.
|
Ask your Facebook Friends
|
I've always been a block level kinda guy but I'm interested in hearing some real world experiences with file level cloning. What are some of the advantages and disadvantages as well as what tools work the best.
Started by egorgry on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
One minor benefit of file-level cloning, is....
Well the most obvious advantage of file-level cloning is that you don't waste time cloning unused on the block level, but close to 10G of reads and 10G of writes on the file level.
|
|
I would like a process to always run at the user level. Either when it is launched by the installer (custom, not msi), which runs as at the administrator level, or when a user logs on. Looking around, I'm not sure this is possible.
Started by Spilly on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Time to start the medium/low level process, the elevated instance by some form of IPC tells the outer.
|
|
In my current project I want to use Behavior Driven Development (BDD), on both levels of business requirements application level tasks.
Is it all right to wrap (group) my internal BDD specs into my high level specs so clients would see that business requirement...
Started by Tadeusz Wójcikddddd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your client probably cares about getting a system that does what she wants, and what she... .
Do you mean "should I put a bunch of test case source code in my specification?" ( BDD is essentially a reframing of TDD )
Then the answer is almost certainly NO .
|
|
Charles Simonyi introduced the idea of "organizing really big software teams by creating one super duper uber programmer writing the top-level functions, while handing off the implementation of the lower-level functions to a team of grunt junior-programmers...
Started by Richard Kevins on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm simplyfying but here are some examples:
High level functions:
Car.Start() Car.MoveTo(....
The closer it is to machine language, the lower-level the function is.
The closer it is to human language, the higher-level the function is.
|
|
What is the approximate ratio of time you typically spend debugging high-level versus low-level bugs?
For the purposes of this discussion, high-level bugs are things like incorrect algorithms, bad assumptions about input data and/or operating environment...
Started by dsimcha on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Low level bugs are usually fixed by the compiler....
The framework takes care of almost everything you define as low-level bugs.
I work in C# using the .net framework.
By your definition almost all of the bugs I see are "High-level" bugs.
|
|
I have the following class:
public class B { public void print() { } public static void main(String[] args) { B B = new B(); B.print(); } }
I was wondering why the compiler didn't give an error saying it's not a static method. How will it distinguish ...
Answer Snippets (Read the full thread at stackoverflow):
It also doesn't....
If your main looked like this:
public static void main(String[] args){ print(): }
then print() would have to be a static method .
It is being called from an instance of the class B .
Because in that example, print() is a instance method.
|
|
Say on my old site I have one level categories of products, with one category being "BMW Cars".. inside of that, I have some products : "328i" , "M3", "M5", "X5"... so basically it is a big mix of everything - cause in the beginning we didnt separate ...
Started by jim on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That is the least surprising to people who bookmakered.
Redirect to the top level "BMW automobiles".
|