Hacker News new | past | comments | ask | show | jobs | submit | mcescher's comments login

Dang it, I had this same idea a while back, except with pre-loading the pages so you can mouseover titles on the left and the story instantly pops up on the right.

This would help get through Reddit way faster -- just slowly move the mouse downward and zoom through all the [PIC] and misleading title submissions.


> When the founding fathers penned the bill of rights, speech meant speech. Not intrusive speech, and not published, internationally accessible works.

First Amendment:

"Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances.

Not sure how "intrusive speech" isn't a subset of "speech".

And if something is published here legally, what's the objection to it being "internationally accessible"? Modulo "munitions" (e.g. encryption).


> Setting up the TLB and handling the page faults,

Should be done once, at the beginning, and the segment re-used.

> then doing the interprocess synchronization

There is IPC anyway when you are sending information between processes. If you delve into the kernel you may be surprised at the number of layers of operations it takes to present data from one process to another using a socket.

> but the constant and synchronisation overhead for a write() is smaller than an mmap()

You're assuming the pages needed are already mapped in the former case. If you're writing anything of size, the pages will probably need to be faulted in anyway. If you're writing something small, then setting up your shared memory at the beginning and then re-using that memory is obviously the way to go, rather than getting and destroying shared memory segments every time you need them.


> Unix domain sockets are fast. really fast. as in, beating shared memory sometimes fast.

Not sure where you got this but it's wrong.


It's a little apples-to-oranges, but it's not "wrong". Lots of IPC problems really are solved fastest using a socket or pipe. Writing to a shared memory buffer doesn't clue the kernel in to the fact that there is new data available, which means you need a syscall anyway to transfer control. And it makes the application responsible for all the buffering that occurs, and applications don't have a "big picture" available to properly optimize things.

Don't diss the pipe. It doesn't do everything, but if you're going to pick just one IPC mechanism, it's the one.


Your arguments are orthogonal to speed.

> Don't diss the pipe

I guess you've been smoking.

You don't make any sense when it comes to "buffers" (writing to shared memory IS writing to a buffer); a pipe doesn't give you a "big picture" to "properly optimize things" (a WTF "argument"), and no syscall is needed to "transfer control", unless you're talking about futexes or some other method to clue the kernel in, in which case, you do indeed have a way to clue the kernel in.

Writing once is faster than writing multiple times. That's why shared memory is obviously faster than not sharing and copying. Time needed to set up shared memory segments is negligible if done right -- once, at the beginning, and then re-used as needed.


I think that the argument there is that shared memory is not useful to transfer data from one process to another, but to share data between processes. Which is quite different use case.

Shared memory is fast, but it is just a shared memory. You have to synchronize accesses to it in some way.

When you want to transfer relatively small records from one process to another, it is probably faster to send them through pipe, because the copying overhead is negligible compared to synchronization overhead, which would be there in shared memory case too (and will probably be larger).

So to wrap up:

1) In most cases it is really needed to tell kernel that you are done and want to wait on some event in other process (relying on preemption or explicit timed sleeps to switch to other process is considered bad practice)

2) Writing once is indeed faster than multiple times, which is in this case of many small writes argument for pipes. Because pipe lets you hand over some data to kernel and let it do any low-level synchronization details, which it can generally do better.

3) In UNIX, pipes/sockets are the most flexible means of IPC. And in case where you have server that reads large chunks of data from multiple clients using shared memory, synchronizing accesses to this shared memory by sockets/pipe is good idea, because you can use select(2)/poll(2) on such socket. Using mutexes or semaphores or something like that would in most cases lead to busy-waiting or unnecessary convoluted code.


> You have to synchronize accesses to it in some way.

Pretty simple.

> it is probably faster to send them through pipe, because the copying overhead is negligible compared to synchronization overhead, which would be there in shared memory case too (and will probably be larger).

There is still synchronization overhead -- just because it's hidden from you in the kernel doesn't mean it isn't there. You should check out the source of your favorite kernel and see how much work is done behind the scenes to transfer data over a socket.

So you have an extra copy, PLUS extra synchronization overhead. The only reason people ever think that method is faster is because of operator error, e.g. creating and destroying shared memory segments thinking it's like malloc.

> 1) In most cases it is really needed to tell kernel that you are done

    man futex
Or just busy-wait, or do a nonblocking "read" like you would anyway when reading from a socket.

> kernel and let it do any low-level synchronization details,

Look at the code. Really. It's a lot of overhead compared to userspace solutions.

> In UNIX, pipes/sockets are the most flexible means of IPC

s/flexible/common

Obviously shared memory is the most flexible because you can implement whatever scheme you want with it. There's always shared memory somewhere anyway, even with sockets, it's just hidden from you in the case of kernel code.

> Using mutexes or semaphores or something like that would in most cases lead to busy-waiting or unnecessary convoluted code.

Busy-waiting is done in multiple places in the kernel. If you're blocking on read anyway, what's the difference -- and if you're not, it's no more convoluted to check a shared condition variable on each pass than nonblocking reads and accumulations.


> Miscarriages, even a century ago, claimed so many women

s/Miscarriages/Childbirth

That's why wide hips are important.


> b) Dominant, decisive, intelligent, women are likely to share similar evolutionary advantages to men.

Unfortunately women like that are incompatible with many human cultures. E.g. try being a dominant, assertive woman someplace with Sharia law. Historically, those traits were bad for survival in many parts of the world.

Or women were treated like chattel and were property of men, and they didn't get a say in who they mated with. So their intelligent genes would be diluted. Or look at Darfur -- it's rape rape rape all the time. Being good at Sudoku requires a certain level of societal stability before it's really that handy.


You're in luck. Tomorrow, there won't be a line at all.


Bill Gates did this stuff dealing with IBM et al.

If you CAN do X, and the only thing stopping you from getting the deal is the other side's perception of you, then influencing their perception (i.e. lying) can save the deal, save your company, and solve their problem -- all at the same time.

It can OFTEN be in BOTH your AND your client's best interest to lie.

And ask for forgiveness later after they are happy with you, IF it ever comes up...


> Bill Gates did this stuff dealing with IBM et al.

Please cite. From what I understand, he sold them software that he would deliver at a later date, before it had been written. It was closer to contract work than deliberate deception. That's not the same thing as lying about factual, verifiable, information.

Personally, I would never associate in business with anyone prone to such factual hyperbole...


Dude, it is a well-known fact. At the time the dealing was made, Bill Gates didn't have the software. Then he immediately bought the rights of QDOS, which he then recast as MS-DOS and sold it to IBM.


> It can OFTEN be in BOTH your AND your client's best interest to lie.

Hmmm... this sounds like a slippery slope to me.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: