Ana Sayfa / Eren (Sayfa 3)

Eren

Merhabalar, Ben Eren Karadaş 1991 Gaziosmanpaşa/İstanbul Doğumluyum. Gürpınar İMKB Mesleki ve Teknik Anadolu Lisesi Veri Tabanı Programcılığını bitirdikten sonra Kahramanmaraş Sütcü İmam Üniversitesi Bilgisayar Programcılığı bölümünü tamamladım. Bitirme projesi olarak Yenimedya Elektronik Yayıncılık şirketinde 1 ay Bilgi İşlem bölümünde stajerlik yaptım. Mezun olduktan sonra aynı şirkette 2 yıl Bilgi İşlem sorumlusu olarak çalıştım. Şirket içerisinde ve farklı kurumlarda eğitim alarak 2 yıl sonunda Sistem bölümüne geçtim. 3 yıllık çalışmanın ardından. 1 Nisan 2016’da Haber Metre Haber Analiz şirketinde Sistem Uzmanı olarak başladım ve halen bu şirkette devam etmekteyim. Kendime ait birçok projem bulunmakta aynı zamanda danışmanlık vermekteyim. Pojelerim; www.devproje.com www.ilkisgunu.com www.sistemciler.com www.kuponyap.com www.adanademir.com www.dogukanozkan.com www.korkmazlift.com www.vtp.com.tr

MongoDB Authorization Model

Authorization is the basically verifies user privileges. MongoDB support different kind of authorization models. 1. Role base access control Role are group of privileges, actions over resources. That are gain …

Devamını Oku..

Mongo as a Replica Set

Mongodb as a Replica Set We would be creating mongodb as a replica set having 3 instances. One instance would be primary and the other 2 instances would be secondary. …

Devamını Oku..

MongoDB Replication

Basic configuration with three nodes The replica set is a group of mongod instances that maintain the same data set. This example shows how to configure a replica set with …

Devamını Oku..

Mongo as Shards

Sharding Environment Setupa Sharding Group Members : For sharding there are three players. Config ServerReplica SetsMongos For a mongo shard we need to setup the above three servers. Config Server …

Devamını Oku..

MongoDB Python Driver

ParameterDetailhostXOptional. You can specify as many hosts as necessary. You would specify multiple hosts, for example,for connections to replica sets.portXOptional. The default value is :27017 if not specified.databaseOptional. The name …

Devamını Oku..

MongoDB Java Driver

Fetch Collection data with condition To get data from testcollection collection in testdb database where name=dev import org.bson.Document; import com.mongodb.BasicDBObject; import com.mongodb.MongoClient; import com.mongodb.ServerAddress; import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoCursor; import com.mongodb.client.MongoDatabase; …

Devamını Oku..