-
Persistent stores: glacier, RDS
-
Transient stores: SQS, SNS
-
Ephemeral stores: EC2 instance, Memcached
-
IOPS: how fast we can read/write
-
Throughput: how much data can be moved at a time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE soyisimler ( | |
| id int IDENTITY(1,1) NOT NULL, | |
| soyisim varchar(255) NOT NULL, | |
| PRIMARY KEY (id) | |
| ) | |
| INSERT INTO soyisimler VALUES ('ABAT'); | |
| INSERT INTO soyisimler VALUES ('ABSEYİ'); | |
| INSERT INTO soyisimler VALUES ('ABACIOĞLU'); | |
| INSERT INTO soyisimler VALUES ('ACAR'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Turkce isimler sozlugu twitter : http://twitter.com/baskindev | |
| CREATE TABLE `isimler` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `isimler` varchar(255) DEFAULT NULL, | |
| `cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U', | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB; | |
| -- ---------------------------- |