All Projects → ukko → Phpredis Phpdoc

ukko / Phpredis Phpdoc

@phpdoc extension php for IDE autocomplete

Labels

Projects that are alternatives of or similar to Phpredis Phpdoc

Dailyreport
日报管理系统V1版本,适合小团队的每日汇报记录
Stars: ✭ 191 (-3.54%)
Mutual labels:  redis
Istio Micro
istio 微服务示例代码 grpc+protobuf+echo+websocket+mysql+redis+kafka+docker-compose
Stars: ✭ 194 (-2.02%)
Mutual labels:  redis
Note Gin
【重构中....】🎉📗📝Cloud note file system, supporting MD file batch upload and download and online reading📌 前端:https://github.com/biningo/note-vue
Stars: ✭ 197 (-0.51%)
Mutual labels:  redis
Redis Roaring
Roaring Bitmaps for Redis
Stars: ✭ 191 (-3.54%)
Mutual labels:  redis
Api
API for Current cases and more stuff about COVID-19 and Influenza
Stars: ✭ 2,323 (+1073.23%)
Mutual labels:  redis
Notorious
Go: A feature-complete, performant torrent tracker
Stars: ✭ 194 (-2.02%)
Mutual labels:  redis
Webredismanager
WebRedis Manager is a simple management to implement Redis using SAEA. RedisSocket, SAEA.MVC and running speed quickly.WebRedisManager是使用的SAEA.RedisSocket、SAEA.MVC等实现Redis的简便管理功能,轻松运行~
Stars: ✭ 189 (-4.55%)
Mutual labels:  redis
Redis Manager
Redis 一站式管理平台,支持集群的监控、安装、管理、告警以及基本的数据操作
Stars: ✭ 2,646 (+1236.36%)
Mutual labels:  redis
Interviewguide
《大厂面试指北》——包括Java基础、JVM、数据库、mysql、redis、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。最佳阅读地址:http://notfound9.github.io/interviewGuide/
Stars: ✭ 3,117 (+1474.24%)
Mutual labels:  redis
Dsock
Distributed WebSocket broker
Stars: ✭ 197 (-0.51%)
Mutual labels:  redis
Zend Diagnostics
Universal set of diagnostic tests for PHP applications.
Stars: ✭ 192 (-3.03%)
Mutual labels:  redis
Rate Limit
🚔 General purpose rate limiter implementation.
Stars: ✭ 193 (-2.53%)
Mutual labels:  redis
Mudpi Core
Configurable automation library for linux SBC boards including raspberry pi
Stars: ✭ 194 (-2.02%)
Mutual labels:  redis
Zi5book
book.zi5.me全站kindle电子书籍爬取,按照作者书籍名分类,每本书有mobi和equb两种格式,采用分布式进行全站爬取
Stars: ✭ 191 (-3.54%)
Mutual labels:  redis
Spring Cloud Azure
Spring Cloud integration with Azure services
Stars: ✭ 197 (-0.51%)
Mutual labels:  redis
Redis4cats
🔖 Redis client built on top of Cats Effect, Fs2 and Lettuce
Stars: ✭ 189 (-4.55%)
Mutual labels:  redis
Firecamp
Serverless Platform for the stateful services
Stars: ✭ 194 (-2.02%)
Mutual labels:  redis
Ratelimit
A Redis-backed rate limiter written in Ruby
Stars: ✭ 197 (-0.51%)
Mutual labels:  redis
Redis Timeseries
Future development of redis-timeseries is at github.com/RedisLabsModules/redis-timeseries.
Stars: ✭ 197 (-0.51%)
Mutual labels:  redis
Repoll
Redis管理平台Repoll,现已开源,基于redis3.x,支持单机、哨兵以及集群模式
Stars: ✭ 196 (-1.01%)
Mutual labels:  redis

You need to add the path to a class of global include path.

After that, your IDE, when you declare a class Redis will display a hint which methods of this object can be used.

For example:

$redis = new Redis();
$redis->con<press Tab or press Ctrl+Space>

Warning:

Do not forget to declare a variable type $ redis

/**
 * Please do not forget to specify the variable type
 * @var Redis
 */
public $redis = null;

Example of use

Install

Setup in IDE PhpStorm

Menu "File" -> "Settings" -> "PHP" -> Select path to folder "phpredis-phpdoc"

Setup in IDE NetBeans

  • Save the file to netbeans stubs folder. For example: ~/netbeans-8.2/php/phpstubs/phpruntime/redis.php

Setup in Zend Studio IDE (Eclipse PDT)

  • Open "Window" -> "Preferences"
  • In preferences dialog open "PHP" -> "PHP Libriaries"
  • Click "New" button, in "User library name" enter "Redis", click "OK"
  • Select newly created "Redis", library Click "Add external folder", select path to the folder which contains your checkout of phpredis-phpdoc or you can download single "Redis.php" file https://raw.github.com/ukko/phpredis-phpdoc/master/src/Redis.php
  • Include your custom library in your project: open "Project" -> "Properties" -> "PHP Include Path", click add library, select "User library", click "Next", check "Redis", click "Finish"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].