{"id":29179737,"url":"https://github.com/trendyol/redis-slack-bot","last_synced_at":"2025-10-25T15:36:35.030Z","repository":{"id":64868821,"uuid":"578934999","full_name":"Trendyol/redis-slack-bot","owner":"Trendyol","description":"Redis Slack Bot","archived":false,"fork":false,"pushed_at":"2025-09-25T13:17:49.000Z","size":645,"stargazers_count":12,"open_issues_count":4,"forks_count":3,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-09-25T15:21:48.581Z","etag":null,"topics":["clean-code","java17","redis","redis-slack-bot","slack","slack-bot","spring","spring-boot","strategy-design-pattern"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Trendyol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-16T08:40:18.000Z","updated_at":"2024-11-07T05:28:59.000Z","dependencies_parsed_at":"2025-01-30T12:22:40.241Z","dependency_job_id":"02a66690-7333-4f84-ae94-e15afa5e8897","html_url":"https://github.com/Trendyol/redis-slack-bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Trendyol/redis-slack-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fredis-slack-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fredis-slack-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fredis-slack-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fredis-slack-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Trendyol","download_url":"https://codeload.github.com/Trendyol/redis-slack-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Trendyol%2Fredis-slack-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013886,"owners_count":26085325,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clean-code","java17","redis","redis-slack-bot","slack","slack-bot","spring","spring-boot","strategy-design-pattern"],"created_at":"2025-07-01T19:06:21.031Z","updated_at":"2025-10-13T01:21:23.822Z","avatar_url":"https://github.com/Trendyol.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Redis Slack Bot\n\n## Overview \n\n* As Trendyol team we developed a new Slack bot to improve the usability of Redis. \u003cbr\u003e\n\n\n### With the help of the Redis Slack bot, you can:\n```\n- GET key -\u003e Returns the value of the key.\n- SET key value -\u003e Sets or updates a key's value in the cache. The ttl is not given, so it remains in\n  the cache indefinitely.\n- SET key value ttl -\u003e Sets or updates key's value which is in the cache. The ttl is given, so it stays\n  in the cache for the number of seconds you specify.\n- DELETE key -\u003e If the key is in the cache, it is deleted.\n- LIST ALL -\u003e Displays a list of all keys in the cache.\n- HELP -\u003e How to use redis slack bot ?\n- PING -\u003e What can i help you ?\n```\n### The following are some examples of each command:\n```\n- GET my_key_123\n- SET my_key_123 \"success\"\n- SET my_key_123 \"{\"name\":\"John\",\"age\":30,\"car\":null}\"\n- SET my_key_123 \"{\"name\":\"John\",\"age\":30,\"car\":null}\" 30\n- SET my_key_123 \"success\" 30\n- DELETE my_key_123\n- LIST ALL\n- HELP\n- PING\n```\n### NOTE that!\n- When performing the commands, the same syntax should be used as in the examples. There should be only one space between \"COMMAND key value \u003cstrong\u003ettl\u003c/strong\u003e\".\n  Otherwise, you will have entered an incorrect command.\u003cbr\u003e\n- Also, do not forget to check your key-value pair after setting data by using the get command!\u003cbr\u003e\n\n\n### Slack Bot Example:   \n- PING \u003cbr\u003e\n  ![PING](./images/ping.png) \u003cbr\u003e\n- HELP \u003cbr\u003e\n  ![HELP](./images/help.png) \u003cbr\u003e\n- SET \u003cbr\u003e\n  ![SET](./images/set.png) \u003cbr\u003e\n- GET \u003cbr\u003e\n  ![GET](./images/get.png) \u003cbr\u003e\n- DELETE \u003cbr\u003e\n  ![DELETE](./images/delete.png) \u003cbr\u003e\n- SET_TTL \u003cbr\u003e\n  ![SET_TTL](./images/set_ttl.png) \u003cbr\u003e\n- LIST_ALL \u003cbr\u003e\n  ![LIST_ALL](./images/list_all.png) \u003cbr\u003e\n\n---\n\n##### Tech Stack\n- Java 17\n- Spring Boot 3.0 \u0026 Spring 6.0\n- Redis\n- Slack Api Client\n\n##### Requirements\n\nFor building and running the application, you need:\n- [JDK 17](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)\n- [Maven](https://maven.apache.org)\n- [Lombok](https://projectlombok.org/)\n- [Slack](https://slack.dev/java-slack-sdk/guides/web-api-basics)\n- [Redis](https://redis.io/)\n\n\n##### Build \u0026 Run\n\nEnvironment Variables\n```\n  SPRING_PROFILES_ACTIVE=prod\n  REDIS_HOST = Your redis host\n  REDIS_PASSWORD = Your redis password\n  NOTIFY_TOKEN = Your slack bot token\n  CHANNEL_ID = Your slack channel id \n```\n\n```\n  mvn clean install \n  mvn --projects redis-slack-bot spring-boot:run\n```\n\n\n##### Port\n```\n  http://localhost:9723\n```\n\n##### License\n\nDistributed under the MIT License. See [LICENSE](LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendyol%2Fredis-slack-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrendyol%2Fredis-slack-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendyol%2Fredis-slack-bot/lists"}