- NoSQL: Theory, Implementati… by serkan
Following slides belong to the tech talk I have given at Yahoo!. NoSQL: Theory, Implementation, an Introduction.
- NoSQL Databases – NoS… by serkan
Christof Strauch, from Stuttgart Media University, has written an incredible 120+ page paper titled NoSQL Databases as an introduction and overview to NoSQL databases . The paper was written between 2010-06 and 2011-02, so it may be a bit out of date, but if you are looking to take in the NoSQL world [...]
- NoSQL classification by serkan
For the last couple years there has been a great increase in the NoSQL movement and products, in this blog you will find some useful information on classification and ecosystem of NoSQL systems. Related article.
- The Common Principles Behin… by serkan
The Common Principles Behind the NOSQL Alternatives Assume that Failure is Inevitable Partition the Data Keep Multiple Replicas of the Same Data Dynamic Scaling Query Support To read more.
- Architectural Patterns for … by serkan
In today’s computing one of the biggest challenge is scalability to deal with high volume traffics, big data and processes. There are several architectural patterns for scalable distributed system some of which are as follows: Load Balancers: Load balancing is one of the easiest approach to provide some level of [...]
- Floyd Cycle Finding Algorithms by serkan
Floyd cycle finding algorithm is used to find a cycle within a collection, graph, or container. A simple example would help understand better. Given a linked list, detect if it contains a cycle or not. If you use two pointers, one of which will traverse the linked list, two nodes [...]
- Stack with LinkedList Imple… by serkan
Naive implementation of Stack in C# uses array. In this post, I have implemented the stack with LinkedList. This implementation is not thread safe. using System; using System.Collections; using System.Collections.Generic; namespace CodeCodeCode { public class StackLinkedList : IEnumerable, ICollection { private readonly LinkedList _container; public StackLinkedList() { _container = new [...]
- RabbitMQ by serkan
RabbitMQ is yet another messaging queue. It is open source, robust, easy, reliable, portable and scalable with high throughput and latency. RabbitMQ is developed with Erlang. Before going into details of RabbitMQ, let’s cover some basic glossary, definitions and uses. A message is an entity that is transferred between different [...]
- RabbitMQ install on Centos by serkan
I’m going to install RabbitMQ on my CentOS box. # wget http://www.rabbitmq.com/releases/rabbitmq-server/v2.7.0/rabbitmq-server-2.7.0-1.noarch.rpm # rpm –install rabbitmq-server-2.7.0-1.noarch.rpm warning: rabbitmq-server-2.7.0-1.noarch.rpm: Header V4 DSA signature: NOKEY, key ID 056e8e56 error: Failed dependencies: erlang >= R12B-3 is needed by rabbitmq-server-2.7.0-1.noarch We need to install erlang, which RabbitMQ was developed with. It requires a version [...]
- Membase by serkan
I wrote about memcached in my previous post and I was researching on Membase, which is a NoSQL implementation of memcached. That is Memcached persisted to disk. Membase is a key-value pair database management system. It s very easy to install, configure and get it running within 5 minutes. It [...]
- Programming (118)Recent Posts
- Memcached by serkan
- Java Set Operations by serkan
- Eclipse Shortcuts by serkan
- C# Synchronizing a method by serkan
- Best Practices and Hidden F… by serkan
- Algorithms (61)Recent Posts
- C# Data Structures - Collec… by serkan
- Binary Search Tree Implemen… by serkan
- LinkedList Notes by serkan
- MinHeap Implementation via C# by serkan
- Equilibrium index of an array by serkan
- Linux (33)Recent Posts
- ActiveMQ installation on Centos by serkan
- Memcached by serkan
- Centos Install C/C++ by serkan
- Process Switching (Context … by serkan
- Check root kit by serkan
- Uncategorized (30)Recent Posts
- Architectural Patterns for … by serkan
- Floyd Cycle Finding Algorithms by serkan
- C#- Implement a Stack with 2 Queue by serkan
- Multi Layer, Multi Player D… by serkan
- Contraposition rule in clas… by serkan
- Theory Of Computation (19)Recent Posts
- Optimization under risk con… by serkan
- Theory of Computation - Tutorial by serkan
- Theory of Computation - Def… by serkan
- Chomsky Hierarcy by serkan
- Theory of Computation, Recu… by serkan
- Scalability (17)Recent Posts
- NoSQL: Theory, Implementati… by serkan
- NoSQL Databases - NoSQL Int… by serkan
- NoSQL classification by serkan
- The Common Principles Behin… by serkan
- RabbitMQ by serkan
- Web (14)Recent Posts
- POST versus GET by serkan
- Windows Server AppFabric by serkan
- Speeding up Web sites by serkan
- Web development terminology… by serkan
- c# Parsing a query string format by serkan
- Databases (10)Recent Posts
- NoSQL: Theory, Implementati… by serkan
- NoSQL Databases - NoSQL Int… by serkan
- NoSQL classification by serkan
- The Common Principles Behin… by serkan
- Membase by serkan
- Networking (8)Recent Posts
- Scalable data center networ… by serkan
- Comparison of the use of Am… by serkan
- Current wr0k, Spring Break,… by serkan
- Scalable Data Center Networks by serkan
- Encoding Framing - Networking notes by serkan
- NoSQL (8)Recent Posts
- NoSQL: Theory, Implementati… by serkan
- NoSQL Databases - NoSQL Int… by serkan
- NoSQL classification by serkan
- The Common Principles Behin… by serkan
- Membase by serkan
- More...
- Guest about Java Email Extractor, Extra…Can you provide package com.atagunsoftware.emailExtractor;
- Anonymous about C# Circular BufferBrilliant code! Just what I'm looking for. Due to HTML stripping out code, the code won't compile unless you add ...
- Erikadevi about Exception in thread "…hiii.. i faced the same problem "Exception in thread "main" java.lang.OutOfMemoryError: Java heap space" i'hv increase the heap from 32m until ...
