MarkR

9,666
reputation
284 views

Registered User

name MarkR
member for 1 year
seen 43 mins ago
website
location Reading, England
age 34
Experienced developer; I use stuff like MySQL, perl, work on pretty large systems.
32m
answered Inter-Process Communication Recommendation
13h
answered Linux distro/version to support when releasing a software on Linux.
13h
comment How to build a server that accepts many thousands of persistent network connections?
If you are serving 600k clients, 10 boxes is NOT a waste of money, as you will probably want more than that anyway (in practice). Talk to your operations team, who should probably know something about capacity management if they are planning to operate this application.
13h
answered How to build a server that accepts many thousands of persistent network connections?
1d
answered Distinguish Java threads and OS threads?
1d
comment Create stored procedure in mysqladmin?
The problem is that you are using phpmyadmin. Stop. Use the mysql command line client.
2d
answered Create stored procedure in mysqladmin?
Dec
11
answered Is there always room to improve/optimize the code?
Dec
11
answered A visual patch tool for Linux
Dec
10
comment Highly concurrent multi-threaded application requires hardware.
I can't imagine wanting to use a 32-bit OS on such a system. Are you sure this is really a requirement? It will wreck your ability to address the amount of memory found on modern systems. Is there a real requirement which forbids a 64-bit OS?
Dec
10
answered ORDER BY RAND() alternative
Dec
10
comment What are the disadvantages of having many indices?
No, the cost of an index in disc space is not "generally trivial". It is possible to use up a lot of space with indexes.
Dec
10
answered Is there a better way to assign permissions to temporary tables in MySQL?
Dec
10
answered Socket Send error
Dec
8
answered MySQL count rows performance
Dec
8
answered C Program on Linux to exhaust memory
Dec
6
comment On the Design of zero-copy Memory allocators used in high volume fast-path code.
I'm afraid I don't really quite understand any of the above (I know nothing about Erlang) but I hope my comments were helpful :)
Dec
4
answered On the Design of zero-copy Memory allocators used in high volume fast-path code.
Dec
3
accepted mysql slow on first query, then fast for related queries
Dec
3
answered Retrieve SD Card Serial Number and Manufacturer under Linux
Dec
3
answered Login, logout and duration time in php and mysql?
Dec
2
accepted Advantages / Disadvantages of pconnect option in CodeIgniter
Dec
2
comment SQL to update a table only if that table exists in the database
You can't actually use that syntax in arbitrary scripts in mysql, so it won't work.
Dec
2
comment selecting rows that are older than current date in mysql
That works provided your time zone never changes; for example daylight saving time. But if you're sane you'll set all your servers clocks to UTC.
Dec
2
answered Advantages / Disadvantages of pconnect option in CodeIgniter
Dec
2
accepted MYSQL server has gone away
Dec
1
answered Fastest socket method for a lot of data between a lot of files
Dec
1
answered spam filter logic
Dec
1
awarded  Nice Answer
Dec
1
comment Why does multithreaded file transfer improve performance?
My point was not that the protocol is badly designed; it's that its design doesn't lend itself to this particular use case. The protocol design is sufficient to implement the requirement to provide transparent remote file access; it just doesn't work too well for copying many small files over a link with latency - you need something else for that.
Nov
30
accepted SQL Design: Big table, thread access serialization.
Nov
30
comment SQL Design: Big table, thread access serialization.
It will happen automatically, and then stay in memory unless something (e.g. access to another big table which pulls lots of pages in) forces it to throw it out.
Nov
30
comment database sharding strategy
I don't think anybody can tell you that, nor can you if you haven't got detailed information on exactly which parts of your application are contending with the database the most. If you're sharding you will presumably have exhausted most other avenues. Depending on the access pattern, 1Tb isn't that big, and may still work on 1 box (with relevant failovers etc)
Nov
29
comment segmentation fault at end of the program
Yes, you're trashing the stack so that when main returns the program counter gets trashed, I imagine. Run it with Valgrind and you'll see.
Nov
29
comment how to do this with pure mysql?
That is ok but will only do what the OP wanted if there is a unique index on those columns; it can't be used for arbitrary conditions.
Nov
29
answered database sharding strategy
Nov
29
answered SQL Design: Big table, thread access serialization.
Nov
29
comment I am new to threads, What does this compile error mean?
@rossoft yes that would work.
Nov
29
answered How can I do an HTTP redirect in C++
Nov
29
answered I am new to threads, What does this compile error mean?
Nov
29
answered How can I compile MySQL 5.1 on a 64 bit CentOS machine in order to achieve high performance?
Nov
28
answered mysql locking question
Nov
27
accepted Is safe to use “X-…” header in a HTTP response?
Nov
27
answered Is safe to use “X-…” header in a HTTP response?
Nov
27
answered What is MySQL primary (key1, key2)
Nov
27
comment The procedure works in MySQL 5, but fails in MySQL6, why?
The stuff for MySQL 6.0 was moved into either earlier or later releases; the work done is still going to be released eventually. MySQL 6.0 will never exist in non-alpha version.
Nov
26
answered about mysql index, multi-column or one?
Nov
26
comment about mysql index, multi-column or one?
No, it should not "proceed to the next row if it doesn't match"; you want an index which it will RANGE SCAN.
Nov
26
revised Multiple application instances on the same database
edited tags
Nov
26
answered Multiple application instances on the same database