Jump to content
php.lv forumi

Web tendences, trendi u.c. zvēri 2017


NMY

Recommended Posts

sveiki,

 

ir sanācis tā, ka pēdējā laikā manās rokās nonāca daži php projekti, kurus nācās papildināt un uzturēt. Pirmais uz CI, otrs uz Silex (+composer, +twig, +bootstrap, +grunt, +jQuery u.t.t.).  

Tā kā neesmu pieredzējis web programmētājs, gribēju nedaudz palasīt par web izstrādes modes tendencēm un nebūt galīgi atpalikušam.

1) kas notiek ar DBMS? Redis un noSQL ir tagad "way to go" vai tomēr vecais labais MySQL ir topā?

2) Kuri framework-i jau ir novecojuši?

3) Overall info kaut kur www.?

Link to comment
Share on other sites

> Redis un noSQL ir tagad "way to go" vai tomēr vecais labais MySQL ir topā?

 

NoSQL neaizstāj SQL, viņi pastāv reizē. Dažiem projektiem NoSQL datubāze makes sense, bet visticamāk tev vajadzēs SQL.

Link to comment
Share on other sites

Ir starp MySQL un MariaDB nelielas atšķirības, bet tās ir tiešām nelielas un samērā obscure, kā arī version dependent.

Piemēram, darbā nesen uzgāju vienu - virtual columns.

Servera OS: Debian jessie, MariaDB: 10.1.18.

MySQL 5.7:

ALTER TABLE some_table ADD COLUMN unique_md5 char(32) AS (MD5(some_column)) STORED UNIQUE;

 

MariaDB (before 10.1.21):

ALTER TABLE some_table ADD COLUMN unique_md5 char(32) AS (MD5(some_column)) PERSISTENT UNIQUE;

 

https://mariadb.com/kb/en/mariadb/virtual-computed-columns/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...