Sponsored Content
The Lounge What is on Your Mind? Purge of Inactive Users with Zero Posts and Other Anti-spam Measures Post 303023541 by Neo on Wednesday 19th of September 2018 04:38:53 AM
Old 09-19-2018
Quote:
Originally Posted by RudiC
Would it make sense to check usernames for patterns (like the recent "125" suffix) before updating / deleting?
If you want to write many pattern matching SQL queries like that, "please go for it" ...

Most the "recent spammers" have already been purged based on other criteria.

Feel free to suggest any MySQL query you like.

Normally these queries should be "in pairs". One MySQL "select" query to test; and then a delete or update query to "do the deed".

I cannot emphasis this enough, and keep (unsuccessfully) encouraging the technical team here at UNIX.COM (who are all very capable and highly technical) to communicate ideas in the actual code (MySQL query for DB suggestions, CSS/HTML/jQuery/Javascript for web site suggestions, etc.)

Thanks
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to logout inactive users????

I would like to automatically logout from the system inactive users depending on their functions. For example there are users that I would like to logout after 15 minutes of inactivity, but there are others that I would like to logout after 30 minutes of inactivity. It's possible to do this??? (6 Replies)
Discussion started by: rrivas
6 Replies

2. UNIX for Dummies Questions & Answers

List all inactive users who has not logged on since last 90 days

Hi, Can I get a script to list out all the users, who has not logged on since last 90 days. Last command in not working due due to /var/adm/wtmpx is more than 2 GB. Thanks in advance. Regards, Roni (10 Replies)
Discussion started by: manasranjanpand
10 Replies

3. Solaris

List all inactive users who has not logged on since last 90 days

I need actuall script which List all inactive users who has not logged on since last 90 days Thanks in advance. Di! (17 Replies)
Discussion started by: haridham
17 Replies

4. Shell Programming and Scripting

Deleting Inactive Solaris users

Hello, I want to do a search for users on my solaris boxes that have been inactive for a defined number of days and then delete them. Any ideas how to determine or calculate the number of days (possibly using the /var/adm/wtmpx file) from the user's last login to the current date of search. ... (0 Replies)
Discussion started by: prince2010
0 Replies
MYSQLND_MEMCACHE_GET_CONFIG(3)						 1					    MYSQLND_MEMCACHE_GET_CONFIG(3)

mysqlnd_memcache_get_config - Returns information about the plugin configuration

SYNOPSIS
array mysqlnd_memcache_get_config (mixed $connection) DESCRIPTION
This function returns an array of all mysqlnd_memcache related configuration information that is attached to the MySQL connection. This includes MySQL, the Memcache object provided via mysqlnd_memcache_set(3), and the table mapping configuration that was automatically col- lected from the MySQL Server. PARAMETERS
o $connection - A handle to a MySQL Server using one of the MySQL API extensions for PHP, which are PDO_MYSQL, mysqli or ext/mysql. RETURN VALUES
An array of mysqlnd_memcache configuration information on success, otherwise FALSE. The returned array has these elements: mysqlnd_memcache_get_config(3) array structure +--------------+---------------------------------------------------+ | Array Key | | | | | | | Description | | | | +--------------+---------------------------------------------------+ | memcached | | | | | | | Instance of Memcached associated to this MySQL | | | connection by mysqlnd_memcache_set. You can use | | | this to change settings of the memcache connec- | | | tion, or directly by querying the server on this | | | connection. | | | | | pattern | | | | | | | The PCRE regular expression used to match the | | | SQL query sent to the server. Queries matching | | | this pattern will be further analyzed to decide | | | whether the query can be intercepted and sent via | | | the memcache interface or whether the query is | | | sent using the general MySQL protocol to the | | | server. The pattern is either the default pattern | | | ( MYSQLND_MEMCACHE_DEFAULT_REGEXP) or it is set | | | via mysqlnd_memcache_set(3). | | | | | mappings | | | | | | | An associative array with a list of all config- | | | ured containers as they were discovered by this | | | plugin. The key for these elements is the name of | | | the container in the MySQL configuration. The | | | value is described below. The contents of this | | | field is created by querying the MySQL Server | | | during association to MySQL and a memcache con- | | | nection using mysqlnd_memcache_set. | | | | |mapping_query | | | | | | | An SQL query used during mysqlnd_memcache_set to | | | identify the available containers and mappings. | | | The result of that query is provided in the map- | | | pings element. | | | | +--------------+---------------------------------------------------+ Mapping entry structure +--------------+---------------------------------------------------+ | Array Key | | | | | | | Description | | | | +--------------+---------------------------------------------------+ | prefix | | | | | | | A prefix used while accessing data via memcache. | | | With the MySQL InnoDB Memcache Deamon plugin, | | | this usually begins with @@ and ends with a con- | | | figurable separator. This prefix is placed in | | | front of the key value while using the memcache | | | protocol. | | | | | schema_name | | | | | | | Name of the schema (database) which contains the | | | table being accessed. | | | | | table_name | | | | | | | Name of the table which contains the data acces- | | | sible via memcache protocol. | | | | |id_field_name | | | | | | | Name of the database field (column) with the id | | | used as key when accessing the table via mem- | | | cache. Often this is the database field having a | | | primary key. | | | | | separator | | | | | | | The separator used to split the different field | | | values. This is needed as memcache only provides | | | access to a single value while MySQL can map mul- | | | tiple columns to this value. | | | | | | Note | | | | | | | | | The separator, which can be set in | | | the MySQL Server configuration, | | | should not be part of any value | | | retrieved via memcache because | | | proper mapping can't be guaranteed. | | | | | fields | | | | | | | An array with the name of all fields available | | | for this mapping. | | | | +--------------+---------------------------------------------------+ EXAMPLES
Example #1 mysqlnd_memcache_get_config(3) example <?php $mysqli = new mysqli("host", "user", "passwd", "database"); $memc = new Memcached(); $memc->addServer("host", 11211); mysqlnd_memcache_set($mysqli, $memc); var_dump(mysqlnd_memcache_get_config($mysqli)); ?> The above example will output: array(4) { ["memcached"]=> object(Memcached)#2(0) { } ["pattern"]=> string(125) "/^s*SELECTs*(.+?)s*FROMs*`?([a-z0-9_]+)`?s*WHEREs*`?([a-z0-9_]+)`?s*=s*(?(?=["'])["']([^"']*)["']|([0-9e.]*))s*$/is" ["mappings"]=> array(1) { ["mymem_test"]=> array(6) { ["prefix"]=> string(13) "@@mymem_test." ["schema_name"]=> string(4) "test" ["table_name"]=> string(10) "mymem_test" ["id_field_name"]=> string(2) "id" ["separator"]=> string(1) "|" ["fields"]=> array(3) { [0]=> string(2) "f1" [1]=> string(2) "f2" [2]=> string(2) "f3" } } } ["mapping_query"]=> string(209) " SELECT c.name, CONCAT('@@', c.name, (SELECT value FROM innodb_memcache.config_options WHERE name = 'table_map_delimiter')) AS key_prefix, c.db_schema, c.db_table, c.key_columns, c.value_columns, (SELECT value FROM innodb_memcache.config_options WHERE name = 'separator') AS sep FROM innodb_memcache.containers c" } SEE ALSO
mysqlnd_memcache_set. PHP Documentation Group MYSQLND_MEMCACHE_GET_CONFIG(3)
All times are GMT -4. The time now is 07:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy