Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
175 views

How does 'typeof' work?

I am curious what the "method body" for typeof in C# would look like (pretty sure I can't get to it in reflector as it's a keyword not a method). I am guessing it is equivalent to GetType(magic ...
7
votes
4answers
228 views

How do Relational Databases Work Under the Hood?

I've always been interested in how you can throw some SQL at at database, and it nearly instantaneously returns your results in an orderly manner without thinking about it as anything other than a ...
6
votes
5answers
15k views

Environment Variables in Python on Linux

Python's access to environment variables does not accurately reflect the operating system's view of the processes environment. os.getenv and os.environ do not function as expected in particular ...
6
votes
5answers
641 views

Phantom Referenced Objects

Phantom References serve for post-mortem operations. The Java specification states that a phantom referenced object will not be deallocated until the phantom-reference itself is cleaned. My question ...
3
votes
3answers
1k views

Retrieving the memory map of its own process in OS X 10.5/10.6

In Linux, the easiest way to look at a process' memory map is looking at /proc/PID/maps, giving something like this: 08048000-08056000 r-xp 00000000 03:0c 64593 /usr/sbin/gpm 08056000-08058000 ...
1
vote
3answers
90 views

Location of VB.NET “source” code, similar to Java's JDK src.zip

I apologize very much if this question has already been asked, or is hard to understand. I have not been able to find the answer after much searching. Does VB.NET have anything similar to Java's JDK ...
1
vote
2answers
54 views

Is the code available that SQL Server uses to fill sys.sql_dependencies?

My current client is struggling with their release process. It's a bit complex and a little uncontrolled. I'm trying to fix the process problems, but in the meantime it would be helpful if I could put ...
1
vote
2answers
563 views

Understanding hibernate internals

Im trying to understand how hibernate works under the hood, how it manages lazy load, transactions, data mappers, unit of work, identity maps, etc. I wrote a small object model, and im downloading ...
0
votes
1answer
67 views

How do .net 4.0 [named] tuples work under the hood?

I suspect that there is a lot of work done at low level. when names are used for tuple elements, do auto-properties get created? Thanks.