/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.justus.pw
| | mrocklin.github.io
2.2 parsecs away

Travel
| |
| | wesmckinney.com
2.7 parsecs away

Travel
| |
| | www.joeltok.com
3.5 parsecs away

Travel
| | Problem While in the initial stages of a project, sometimes we have to choose between storing data with Pandas DataFrames or in native python lists of dictionaries. Both data structures look similar enough to perform the same tasks - we can even look at lists of dictionaries as simply a less complex Pandas DataFrame (each row in a DataFrame corresponds to each dictionary in the list). The question then arises: given the increased complexity and overhead of a Pandas DataFrame, is it true then that we shou...
| | surfingcomplexity.blog
35.2 parsecs away

Travel
| In the previous blog post, we saw how a transaction isolation strategy built on multi-version concurrency control (MVCC) does not implement the serializable isolation level. Instead, it implements a weaker isolation level called snapshot isolation. In this post, I'll discuss how that MVCC model can be extended in order to achieve serializability, based on work...