├── .gitignore ├── LICENSE ├── README.md ├── blockchain ├── bitcoin.md └── bitcoin.pdf ├── caching ├── Low Overhead High Performance Buffer .PDF ├── SqlcachePOPL17.pdf ├── a-constant-algorithm-for-implementing-the-lfu-cache-eviction-scheme.pdf ├── caching.md ├── nsdi13-final170_update.pdf └── sosp_fbanalysis.pdf ├── concurrency ├── Heap Architectures for Concurrent Languages.pdf └── everything you wanted to know about synchronization.pdf ├── consensus-algorithms ├── consensus-algorithms.md ├── paxos-made-simple.pdf ├── raft.pdf └── zab.totally-ordered-broadcast-protocol.2008.pdf ├── cryptography └── cryptography.md ├── datastores ├── MongoDB_Security_Architecture_WP.pdf ├── Redis-Labs-Do-You-Really-Know-108-Web.pdf ├── Redis-Labs-Why-MongoDB-Needs-Redis.pdf ├── The Dangers of Replication and a Solution.pdf ├── WP-RedisLabs-A-Quick-Guide-to-Recommendations-using-Redis.pdf ├── WP-RedisLabs-HyperLogLog-102-Web.pdf ├── WP-RedisLabs-Popular-Redis-Uses-for-Beginners.pdf ├── WP-RedisLabs-RediSearch-103-Web.pdf ├── WP-RedisLabs-Redis-for-Machine-Learning.pdf ├── WP-RedisLabs-WhyYourSQLServerNeedsRedis.pdf ├── WP-RedisTimeSeries.pdf ├── cassandra.md ├── cassandra.pdf ├── dynamo-amazons-highly-available-key-value-store.pdf ├── mongodb_operational_data_lake.pdf ├── mongodb_spark.pdf ├── mongodb_use_case_guidance.pdf ├── new-paradigm-data-processing-graph-databases.pdf ├── spanner-google's-globally-distributed-database.pdf ├── tao-facebook-distributed-datastore.pdf └── the-google-file-system.pdf ├── distributed-systems ├── Distributed SQL Database That Scales.pdf ├── Kafka.pdf ├── distributed-systems.md ├── kafka_and_mongodb.pdf └── mapreduce-simplified-data-processing-on-large-clusters.pdf ├── languages ├── Go! for multi-threaded deliberative agents.pdf ├── Java initial paper.pdf ├── Java white paper.pdf ├── The Development of the C Language.pdf ├── Why C++ is not just an Object-Oriented Programming Language.pdf └── programming-languages.md ├── machine-learning ├── Distilling the Knowledge in a Neural Network.pdf └── randomforest2001.pdf ├── memory-management.md ├── operating-systems └── os.md ├── search-engine ├── page-rank.pdf └── search-engine.md └── system-design └── Real-Time-Data-via-Event-Driven-Architecture.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/README.md -------------------------------------------------------------------------------- /blockchain/bitcoin.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blockchain/bitcoin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/blockchain/bitcoin.pdf -------------------------------------------------------------------------------- /caching/Low Overhead High Performance Buffer .PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/caching/Low Overhead High Performance Buffer .PDF -------------------------------------------------------------------------------- /caching/SqlcachePOPL17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/caching/SqlcachePOPL17.pdf -------------------------------------------------------------------------------- /caching/a-constant-algorithm-for-implementing-the-lfu-cache-eviction-scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/caching/a-constant-algorithm-for-implementing-the-lfu-cache-eviction-scheme.pdf -------------------------------------------------------------------------------- /caching/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/caching/caching.md -------------------------------------------------------------------------------- /caching/nsdi13-final170_update.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/caching/nsdi13-final170_update.pdf -------------------------------------------------------------------------------- /caching/sosp_fbanalysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/caching/sosp_fbanalysis.pdf -------------------------------------------------------------------------------- /concurrency/Heap Architectures for Concurrent Languages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/concurrency/Heap Architectures for Concurrent Languages.pdf -------------------------------------------------------------------------------- /concurrency/everything you wanted to know about synchronization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/concurrency/everything you wanted to know about synchronization.pdf -------------------------------------------------------------------------------- /consensus-algorithms/consensus-algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/consensus-algorithms/consensus-algorithms.md -------------------------------------------------------------------------------- /consensus-algorithms/paxos-made-simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/consensus-algorithms/paxos-made-simple.pdf -------------------------------------------------------------------------------- /consensus-algorithms/raft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/consensus-algorithms/raft.pdf -------------------------------------------------------------------------------- /consensus-algorithms/zab.totally-ordered-broadcast-protocol.2008.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/consensus-algorithms/zab.totally-ordered-broadcast-protocol.2008.pdf -------------------------------------------------------------------------------- /cryptography/cryptography.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastores/MongoDB_Security_Architecture_WP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/MongoDB_Security_Architecture_WP.pdf -------------------------------------------------------------------------------- /datastores/Redis-Labs-Do-You-Really-Know-108-Web.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/Redis-Labs-Do-You-Really-Know-108-Web.pdf -------------------------------------------------------------------------------- /datastores/Redis-Labs-Why-MongoDB-Needs-Redis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/Redis-Labs-Why-MongoDB-Needs-Redis.pdf -------------------------------------------------------------------------------- /datastores/The Dangers of Replication and a Solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/The Dangers of Replication and a Solution.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisLabs-A-Quick-Guide-to-Recommendations-using-Redis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisLabs-A-Quick-Guide-to-Recommendations-using-Redis.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisLabs-HyperLogLog-102-Web.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisLabs-HyperLogLog-102-Web.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisLabs-Popular-Redis-Uses-for-Beginners.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisLabs-Popular-Redis-Uses-for-Beginners.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisLabs-RediSearch-103-Web.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisLabs-RediSearch-103-Web.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisLabs-Redis-for-Machine-Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisLabs-Redis-for-Machine-Learning.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisLabs-WhyYourSQLServerNeedsRedis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisLabs-WhyYourSQLServerNeedsRedis.pdf -------------------------------------------------------------------------------- /datastores/WP-RedisTimeSeries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/WP-RedisTimeSeries.pdf -------------------------------------------------------------------------------- /datastores/cassandra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/cassandra.md -------------------------------------------------------------------------------- /datastores/cassandra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/cassandra.pdf -------------------------------------------------------------------------------- /datastores/dynamo-amazons-highly-available-key-value-store.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/dynamo-amazons-highly-available-key-value-store.pdf -------------------------------------------------------------------------------- /datastores/mongodb_operational_data_lake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/mongodb_operational_data_lake.pdf -------------------------------------------------------------------------------- /datastores/mongodb_spark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/mongodb_spark.pdf -------------------------------------------------------------------------------- /datastores/mongodb_use_case_guidance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/mongodb_use_case_guidance.pdf -------------------------------------------------------------------------------- /datastores/new-paradigm-data-processing-graph-databases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/new-paradigm-data-processing-graph-databases.pdf -------------------------------------------------------------------------------- /datastores/spanner-google's-globally-distributed-database.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/spanner-google's-globally-distributed-database.pdf -------------------------------------------------------------------------------- /datastores/tao-facebook-distributed-datastore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/tao-facebook-distributed-datastore.pdf -------------------------------------------------------------------------------- /datastores/the-google-file-system.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/datastores/the-google-file-system.pdf -------------------------------------------------------------------------------- /distributed-systems/Distributed SQL Database That Scales.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/distributed-systems/Distributed SQL Database That Scales.pdf -------------------------------------------------------------------------------- /distributed-systems/Kafka.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/distributed-systems/Kafka.pdf -------------------------------------------------------------------------------- /distributed-systems/distributed-systems.md: -------------------------------------------------------------------------------- 1 | http://notes.stephenholiday.com/Kafka.pdf -------------------------------------------------------------------------------- /distributed-systems/kafka_and_mongodb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/distributed-systems/kafka_and_mongodb.pdf -------------------------------------------------------------------------------- /distributed-systems/mapreduce-simplified-data-processing-on-large-clusters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/distributed-systems/mapreduce-simplified-data-processing-on-large-clusters.pdf -------------------------------------------------------------------------------- /languages/Go! for multi-threaded deliberative agents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/languages/Go! for multi-threaded deliberative agents.pdf -------------------------------------------------------------------------------- /languages/Java initial paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/languages/Java initial paper.pdf -------------------------------------------------------------------------------- /languages/Java white paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/languages/Java white paper.pdf -------------------------------------------------------------------------------- /languages/The Development of the C Language.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/languages/The Development of the C Language.pdf -------------------------------------------------------------------------------- /languages/Why C++ is not just an Object-Oriented Programming Language.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/languages/Why C++ is not just an Object-Oriented Programming Language.pdf -------------------------------------------------------------------------------- /languages/programming-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/languages/programming-languages.md -------------------------------------------------------------------------------- /machine-learning/Distilling the Knowledge in a Neural Network.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/machine-learning/Distilling the Knowledge in a Neural Network.pdf -------------------------------------------------------------------------------- /machine-learning/randomforest2001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/machine-learning/randomforest2001.pdf -------------------------------------------------------------------------------- /memory-management.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /operating-systems/os.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search-engine/page-rank.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/search-engine/page-rank.pdf -------------------------------------------------------------------------------- /search-engine/search-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/search-engine/search-engine.md -------------------------------------------------------------------------------- /system-design/Real-Time-Data-via-Event-Driven-Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhiambovivian/cs-papers/HEAD/system-design/Real-Time-Data-via-Event-Driven-Architecture.pdf --------------------------------------------------------------------------------