All of those answers were flagged as spam because many of them were posted in a short period of time to older questions, and they all contained a promotional link where your affiliation was not disclosed. I turn your attention to the relevant section of the FAQ (emphasis added):
Be careful, because the community frowns on overt self-promotion and tends to vote it down and flag it as spam. Post good, relevant answers, and if some (but not all) happen to be about your product or website, so be it. However, you must disclose your affiliation in your answers.
If a huge percentage of your posts include a mention of your product or website, you're probably here for the wrong reasons. Our advertising rates are quite reasonable; contact our ad sales team for details. We also offer free community promotion ads for open source projects and non-profit organizations.
I want to go over one of your answers in detail to explain why I deleted it, and to help you to improve your answers. This answer is to the question Page management in in-memory database, which asks:
I wonder in the case that all data fit into memory and disk is only used for fail-over, is there any need to divide data/index into pages(I mean efficiency issues)?
Your answer was in four parts:
You'll find that B+trees are most efficient, regardless of whether you're working purely in-memory or on-disk. And if there's any danger of your memory database growing too large and causing swapping, organizing into pages is still an advantage.
This doesn't really answer the question. The OP is asking specifically about the advantages of paging in the case where all data fits into memory. You're telling him that paging is nice just in case it doesn't fit into main memory.
A lot of literature exists on the use of T-trees for in-memory databases, but in reality they still perform worse than B+trees. http://www.vldb.org/conf/1986/P294.PDF
This is probably the best part of the answer, as the paper you link to might cover the question asked. I don't really know though, since I didn't read the paper. This part of the answer could be posted as a comment, or you could quote the relevant parts of the paper to make it more clear what the answer to the question is.
But you can save yourself the trouble and just use OpenLDAP MDB. http://www.symas.com/mdb/
It's a little bit troubling that you managed to work a recommendation to your project in to this answer. This really doesn't belong here, as it doesn't answer the question. It would seem to indicate that you were searching for any question that might be even tangentially related so that you could post promotional links.
In the meantime if you feel like reading more on the topic, google "index structures for main memory databases" will give you plenty of research papers to read. I've read just about all of them already.
This is only slightly more helpful than telling someone to just Google their question. It can be helpful (in a comment) in some cases to give people hints about what terms to search for if they seem to be struggling, but I don't think that's really warranted here. I think it's safe to assume that the OP knows what to Google.