Title: Hoeboe
Author: Twice Two Media
Published: <strong>2018년 12월 4일</strong>
Last modified: 2020년 4월 1일

---

플러그인 검색

![](https://ps.w.org/hoeboe/assets/banner-772x250.png?rev=1985172)

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://ps.w.org/hoeboe/assets/icon-256x256.png?rev=1985172)

# Hoeboe

 작성자: [Twice Two Media](https://profiles.wordpress.org/twicetwomedia/)

[다운로드](https://downloads.wordpress.org/plugin/hoeboe.0.1.4.zip)

 * [세부사항](https://ko.wordpress.org/plugins/hoeboe/#description)
 * [평가](https://ko.wordpress.org/plugins/hoeboe/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/hoeboe/#installation)
 * [개발](https://ko.wordpress.org/plugins/hoeboe/#developers)

 [지원](https://wordpress.org/support/plugin/hoeboe/)

## 설명

Easily update WordPress transients in the background via AJAX to increase site speed
and avoid long page load times. Hoeboe can be especially helpful with caching of
large external API calls or heavy internal database queries.

If you’ve used the WordPress Transients API, you already know how useful it can 
be with caching, page load, and site speed. If you’ve used transients to store data
from external API calls or from heavy internal database queries, then you also know
a few of its limitations. Namely, page load can be negatively impacted on the user
session where a large transient gets updated.

Hoeboe helps to solve this problem of the one-off user who has to deal with potentially
long page load while your site refreshes a transient in the background. With Hoeboe,
you can choose to update those large transients in the background via AJAX. Your
users won’t notice anything different – other than possibly faster overall site 
speed.

## 설치

Upload the Hoeboe plugin and activate Hoeboe within wp-admin settings. You’ll then
be ready to upgrade your WordPress transients.

See the example below detailing how to use Hoeboe in your theme:

**Basic Implementation of a Transient**

    ```
    <?php
    //WP_Query function to be used to get data
    function my_function_to_get_featured_posts($category, $posts_per_page) {
        $posts = new WP_Query(
          array(
                "category" => $category,
                "posts_per_page" => $posts_per_page
          )
        );
        return $posts;
    }

    //Attempt to get transient
    $transient_name = "foo_featured_posts";
    $featured = get_transient( $transient_name );

    //Check for transient. If none, then execute WP_Query function
    if ( false === ( $featured ) ) {

        $category = "featured";
        $posts_per_page = "5";
        $featured = my_function_to_get_featured_posts($category, $posts_per_page);

        //Put the results of the query in a transient. Expire after 12 hours.
        $expiration_time = 12 * HOUR_IN_SECONDS;
        set_transient( "foo_featured_posts", $featured, $expiration_time );
    } 
    ?>
    ```

**Using Hoeboe with that same Transient outlined above**

    ```
    <?php
    //WP_Query function to be used to get data
    function my_function_to_get_featured_posts($category, $posts_per_page) {
        $posts = new WP_Query(
          array(
                "category" => $category,
                "posts_per_page" => $posts_per_page
          )
        );
        return $posts;
    }

    $transient_name = "foo_featured_posts";
    $my_function_name = 'my_function_to_get_featured_posts';
    $category = "featured";
    $posts_per_page = "5";
    $my_function_parameters = array($category, $posts_per_page);
    $transient_expire = 60;
    $expiration_time = 12 * HOUR_IN_SECONDS;

    if (class_exists('Hoeboe')) {
        $hoeboe = new Hoeboe();
        $transient_value = $hoeboe->hoeboe__updatetransient($transient_name, $my_function_name, $my_function_parameters, $expiration_time);
    }
    ?>
    ```

#### Links

 * [Detailed installation and implementation guide](https://twicetwomedia.com/wordpress-plugins/).

## FAQ

  Does Hoeboe replace WordPress transients?

**No.** Hoeboe works alongside the Transients API to help you cache data better 
and, ultimately, provide a better user experience for your site visitors.

  If I activate Hoeboe, will it automatically affect all current WordPress transients
that I use?

**No.** You must implement Hoeboe individually within your theme even after the 
Hoeboe plugin is activated. Hoeboe is set up this way so that you can pick and choose
which transients to use Hoeboe on.

  How do I implement Hoeboe on a transient?

**Only a couple of simple steps.** Visit the link below for more information.

[Detailed installation and implementation guide](https://twicetwomedia.com/wordpress-plugins/).

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“Hoeboe”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ Twice Two Media ](https://profiles.wordpress.org/twicetwomedia/)

[자국어로 “Hoeboe”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/hoeboe)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/hoeboe/)는, [SVN 저장소](https://plugins.svn.wordpress.org/hoeboe/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/hoeboe/)을 [RSS](https://plugins.trac.wordpress.org/log/hoeboe/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 0.1.4

_Release Date – Mar 31, 2020_
 * Include new file

#### 0.1.3

_Release Date – Mar 31, 2020_
 * Only include jQuery if it is not already registered*
Improve admin settings

#### 0.1.2

_Release Date – Jul 23, 2019_
 * Fix PHP warnings on activation / deactivation

#### 0.1.1

_Release Date – Dec 9, 2018_
 * Tested up to WordPress 5.0 * Enqueue jQuery if not
already present * Better handle multiple Hoeboe/Transient calls on one page * Better
handle multiple Hoeboe/Transient requests in a short time frame

#### 0.1.0

_Release Date – Dec 1, 2018_
 * Initial release

## 기초

 *  버전 **0.1.4**
 *  최근 업데이트: **6년 전**
 *  활성화된 설치 **10보다 적음**
 *  워드프레스 버전 ** 3.5 또는 그 이상 **
 *  다음까지 시험됨: **5.4.19**
 *  PHP 버전 ** 5.3 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/hoeboe/)
 * 태그:
 * [ajax](https://ko.wordpress.org/plugins/tags/ajax/)[api](https://ko.wordpress.org/plugins/tags/api/)
   [cache](https://ko.wordpress.org/plugins/tags/cache/)[caching](https://ko.wordpress.org/plugins/tags/caching/)
   [transients](https://ko.wordpress.org/plugins/tags/transients/)
 *  [고급 보기](https://ko.wordpress.org/plugins/hoeboe/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/hoeboe/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/hoeboe/reviews/)

## 기여자

 *   [ Twice Two Media ](https://profiles.wordpress.org/twicetwomedia/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/hoeboe/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://twicetwomedia.com/wordpress-plugins/)