complexity level problem Geeks for Geeks PSuch like Negtive weight cycle detection problem.Exists a polynomial algorithm to solve this problem.is set of problems that can be solved by a deterministic Turing machine in Polyn 2015-07-17 study #algorithm #math
concurrent read level Assume we have 2 transactions execute concurrently. possible problemdirty readTransaction 1 reads uncommitted data from transaction 2. Uncommitted means these data could be removed or changed someho 2015-07-17 operation #postgresql #database
email agent protocals Mail user agentuser program that used for sending and receiving email. Like foxmail… webmail also count on. Mail transfer agenttransfer email from one server to another Mail delivery agentreceive mail 2015-07-17 operation #mail
postgresql backup logical backupLogical backup extract metadata(with SQL) from postgresql.Its advantages includes human readable text and better transplantability. pg_dumpDump objects or single database into file. 2015-07-15 operation #postgresql
psql session level parameters for logging When you open psql, the information it provide to you is just for notification of command completion. If you need more idea about how parse tree, execution plan and internal debug log are, you need to 2015-07-08 operation #postgresql
postgresql system columns explain xminTransaction ID for insertion. For identifying different transactions.Will changes after new transaction(Whether Insert/Update) commits. xmaxTransaction ID for deletion. Not being 0 means t 2015-07-03 operation #postgresql
postgresql lock introduction For official documentation, please refer to Postgresql. Table levelOnce acquired, a lock is normally held till end of transaction.But if a lock is acquired after establishing a savepoint, the lock i 2015-07-02 operation #postgresql
tutorial to use google speech API I spent a long time searching for a good framework or API to do my oral programming work, yesterday I finally find a good way to do that.First you need to use google speech api, and even before using 2015-05-16 development #java
reason that handler execute in invert order in ring wrapper the middleware in ring provides another way to understand function that return function.Here I am gonno explain a little bit.The code below comes from stackoverflow. 12345678910111213141516171819(let 2015-05-06 development #clojure
Verification for C variable pointer Well, since the first time I got in touch with pointer in C, this guy has confused me a little bit. About three years ago I made a experiment to clarify its properties, but in another blog.I am gonna 2015-05-06 development #c