Showing entries 7881 to 7890 of 44082
« 10 Newer Entries | 10 Older Entries »
MySQL Document Store Developments

This blog will discuss some recent developments with MySQL document store.

Starting MySQL 5.7.12, MySQL can be used as a real document store. This is great news!

In this blog post, I am going to look into the history-making MySQL work better for “NoSQL” workloads and more of the details on what MySQL document store offers at this point.

First, the idea of using reliable and high-performance MySQL storage engines for storing or accessing non-relational data through SQL is not new.

Previous Efforts

MyCached (Memcache protocol support for MySQL) was published back in …

[Read more]
Laravel Facebook authentication using Socialite Package

In Nowdays Social authentication is important to implement in website because nowdays most of the users or developer etc will connected with Social network like facebook twitter google gitbub etc So In this post i want to share with you how to do sign in with facebook and how to do sign up wi

Cédric Bruderer: Define preferred SST donor for Galera Cluster

One of our customers recently ran into a problem, where he wanted to have a preferred donor for SST, whenever a node came up. The problem was, that the node did not come up, when the preferred donor was not running.

In the documentation, you can find the parameter wsrep_sst_donor, which prefers the specified node as SST donor. This is great, as long as the donor is actually running.

The problem can be fixed by adding a comma to the end of the value of wsrep_sst_donor, what would look like this:

wsrep_sst_donor="galera2,"

Note the comma at the end of the value. This trailing comma basically tells this node, that galera2 is the preferred donor, if galera2 is not available, any other available node will be used as donor.

You could also …

[Read more]
MySQL 5.7.12 – Part 5: Connector/Node.js

In part 2 of this series of blog posts about MySQL 5.7.12 you could read about our new X Protocol for MySQL. Part 3 gave a glance on our new common basic API, the DevAPI. What’s a protocol and an API without clients using it?…

How to correctly make "latest" symlinks

"Latest symlink"A "latest" symlink, is a symbolic link (on Linux, Unix etc) which links to the "latest" version of a file.
Suppose we have a file which takes some effort to create, which is generated periodically or in response to some stimulus (e.g. user activity). Then we want to create a "latest version" symlink.
Ideally the properties should be

  • latest symlink always points at the latest version (duuh!)
  • latest symlink always exists
  • latest symlink never points at a partially completed, broken, missing or otherwise bad file

Sometimes people do this in a way which won't work.
How to create a symlinkDead easy, right? Just call the "symlink" function. 
 int symlink(const char *oldpath, const char *newpath);

 DESCRIPTION
       symlink()  creates  a  symbolic  …

[Read more]
How to set ANDROIDHOME environment variable in ubuntu

In this post i want to share with you how to set android home environment variable in ubuntu os when i fatch this issue i tired to solve this issue because when i run my app i always found following error preThe ANDROIDHOME environment variable is not set or it points to a nonexistent direct

AngularJS How to Limit String Length using Filter

Some case we have enough space to display content for example you have articale blog and you want to display saveral articale on homepage with limited content like this way preLorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmodtempor incididunt ut labore et dolore magna a

Virtual Hosting with vsftpd + TLS encryption and MySQL on Ubuntu 15.10

Vsftpd is one of the most secure and fastest FTP servers for Linux. Usually vsftpd is configured to work with system users. This document describes how to install a vsftpd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine.

JQuery how to get attribute value example

If you are new and you want to get attribute value then you can get easily sometime maybe we also need to get custom attribute value i mean data attribute value In following example i give you three way to get custom attribute value in jquerystrong classexampleExamplestrongpre class

MySQL 5.7.12 – Part 4: A new MySQL Command Line Shell

The classic MySQL command line tool is how most users – developers and administrators – interact with a MySQL server. From administrative tasks to trying out queries, it wouldn’t be far-fetched to call it the face of MySQL.

With a new programming interface built into the MySQL Server, we need to properly support it at the client side in connectors, tools and of course, the command line client.…

Showing entries 7881 to 7890 of 44082
« 10 Newer Entries | 10 Older Entries »