Indexed text view Oracle is possible

Indexed text view Oracle is possible?

Looks like you are indexing the file as part of a multi_column_datastore name but expected to read the contents of the file. How do you know that filename is a file that must be read, where the other columns are text indexing Oracle text directly?

To index the content of a file, you must use the FILE_DATASTORE. There is no direct way to concatenate the contents of a file with columns of simple text - if you need to do this you need to use USER_DATASTORE, you read the contents of the file in the procedure of data store and filter it with CTX_DOC. POLICY_FILTER.

Tags: Database

Similar Questions

  • I have a button with the icon text. Is it possible to increase the space between the text and icon?

    Mr President.

    I have a button with the icon text. Is it possible to increase the space between the text and icon?

    adf button text image space.png

    adf button text image space.jpg

    Concerning

    Have you tried it as directed by the other thread?

    
    

    See you soon

    AJ

  • MapViewer and index of the oracle

    Hi all
    The Oracle index can take over all the mapviewer API?. According to Oracle spatial UG (Appendix B), the Oracle index supports SDO_GEOM. SDO_BUFFER, SDO_GEOM. SDO_DISTANCE,
    SDO_GEOM. VALIDATE_GEOMETRY_WITH_CONTEXT, SDO_GEOM. VALIDATE_LAYER_WITH_CONTEXT. Other than the method, index of the Oracle can't stand not the other functions like SDO_GEOM SDO_GEOM. WITHIN_DISTANCE.
    API of the mapviewer as queryWithinRadius (...), identify (...) methods can use SDO_GEOM. Method WITHIN_DISTANCE internally. Is there a any restriction for the oracle mapviewer on index?

    Please specify.

    Sujnan

    Sujnan,
    MapViewer uses space as operators: sdo_within_distance, sdo_filter and sdo_nn and sdo_relate and not the
    Functions package SDO_GEOM.
    And all of the operators used by MapViewer are part of landmark (as long as you do not use the themes GeoRaster or network topology).

    Siva

  • full text by Oracle index

    Can - as anyone knows it is possible to create the two oracle text index on a column, for example, index CTXCAT and CTXRULE index and which will be during the questioning of this column? is this a good practice?

    Thanks in advance.

    If in doubt, test it and see.  Yes, you can create two types of text index Oracle on the same column.  If you create a CTXCAT index and an index of CTXRULE, then using CATSEARCH queries will use the CTXCAT index and queries using MATCHES will use the CTXRULE index.  When querying with CATSEARCH, you will find all the lines where the search terms in the value of the column.  When querying with CTXRULE, he does the opposite and finds all rows where the column values are found in the search terms.  Please see the demo below.  Whether if it is a good practice, depends on what you need.  If you need two types of research, then Yes.  If this isn't the case, then no, it would be unnecessary overhead.

    Scott@orcl_11gR2 > create table test_tab (test_col varchar2 (60))

    2.

    Table created.

    Scott@orcl_11gR2 > insert all

    2 in test_tab values ('test')

    3 in test_tab values ('data')

    4 in test_tab values ('test data')

    5 in test_tab values ('other things')

    6 select * of the double

    7.

    4 lines were created.

    Scott@orcl_11gR2 > create index ctxcat_idx on test_tab (test_col)

    2 indextype is ctxsys.ctxcat

    3.

    The index is created.

    Scott@orcl_11gR2 > create index ctxrule_idx on test_tab (test_col)

    2 indextype is ctxsys.ctxrule

    3.

    The index is created.

    Scott@orcl_11gR2 > set autotrace on explain

    Scott@orcl_11gR2 > select * from test_tab

    2 where catsearch (test_col, null, "test data") > 0

    3.

    TEST_COL

    ------------------------------------------------------------

    test data

    1 selected line.

    Execution plan

    ----------------------------------------------------------

    Hash value of plan: 399706479

    ------------------------------------------------------------------------------------------

    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |

    ------------------------------------------------------------------------------------------

    |   0 | SELECT STATEMENT |            |     1.    44.     3 (0) | 00:00:01 |

    |   1.  TABLE ACCESS BY INDEX ROWID | TEST_TAB |     1.    44.     3 (0) | 00:00:01 |

    |*  2 |   DOMAIN INDEX | CTXCAT_IDX |       |       |            |          |

    ------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):

    ---------------------------------------------------

    2 - access("CTXSYS".") CATSEARCH "("TEST_COL","données d'essai', NULL) (> 0) "

    Note

    -----

    -dynamic sample used for this survey (level = 2)

    Scott@orcl_11gR2 > select * from test_tab

    where the 2 matches (test_col, 'test data') > 0

    3.

    TEST_COL

    ------------------------------------------------------------

    test

    data

    test data

    3 selected lines.

    Execution plan

    ----------------------------------------------------------

    Hash value of plan: 1476734355

    -------------------------------------------------------------------------------------------

    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |

    -------------------------------------------------------------------------------------------

    |   0 | SELECT STATEMENT |             |     1.    44.     1 (0) | 00:00:01 |

    |   1.  TABLE ACCESS BY INDEX ROWID | TEST_TAB |     1.    44.     1 (0) | 00:00:01 |

    |*  2 |   DOMAIN INDEX | CTXRULE_IDX |       |       |     0 (0) | 00:00:01 |

    -------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):

    ---------------------------------------------------

    2 - access("CTXSYS".") MATCHES "("TEST_COL","données d'essai') (> 0) "

    Note

    -----

    -dynamic sample used for this survey (level = 2)

    Scott@orcl_11gR2 >

    Post edited by: BarbaraBoehmer

  • Text of Oracle installed but cannot find anything through the full-text index

    Hello

    I have an Oracle 10 G (10.2.0.4) 64-bit on a Windows 2003r2 64 bit (sp2) database. I also installed the Oracle text:

    Oracle Text
    VALID 10.2.0.4.0


    Then, I created some preferences and created the index of full text:
    create index afindex on docs (document) indextype is ctxsys.context parameters ('storage gdoc_store SYNC (ON COMMIT)');

    so with the syn on validation, it should immediately be viewed in the index.

    I for example in 1 table 6 documents (word, pdf,...), the other has more documents then 64000 and 3rd over 425000.

    In any of the 3 above, research on text gives result after the index is created. Not in the developer program and in sqlplus.

    Search sql, for example:

    Select the id from docs where contains (doc, 'hello') > 0;

    under the c:\windows\temp, I see on 380files with drgibXXXXX, so it does not index them?

    What could be the problem?

    Note that I have a lot of other databases, where I also use Oracle text and there is no problem, only difference is the 32 <>- 64-bit.

    error in ctx_index_error is:

    DRG-11207: User filter command came out with the State 1

    Published by: user12155961 on 15-apr-2010 05:33

    AUTO_FILTER on MS Windows x 86-64-bit, see the Note 309154.1

    You have several Oracle_Homes on this server and this is a RAC cluster?
    Export and download the structure of keys to register MS under Wow6432Node - oracle.

    -Edwin

  • Unable to full-text index content in Oracle 11 g UCM

    Hello

    I am new to Oracle 11g UCM.

    I can't make it to the full-text index, the content files that are archiving in the Oracle UCM.

    I added entries in the config.cfg file below:

    SearchIndexerEngineName = OracleTextSearch
    IndexerDatabaseProviderName = SystemDatabase
    AdditionalEscapeChars =. #

    While performing the indexing Repository Manager only operation, the metadata of the content files are indexed, but text is not get indexed.

    What missing here in Oracle UCM for fulltext indexing not content? Should what configurations I do for that I can search to search in full text on the Oracle UCM content?

    Thanks in advance
    Dipesh

    Hello

    :-) Points.

    Thank you
    Srinath

  • Index text fuzzy vs utl_match.jaro_winkler_similarity

    Dear all,

    I try with the utl_match.jaro_winkler_similarity function in my code to search scenarios.
    I tried the function utl_match.jaro_winkler_similarity by replacing oracle index contains - fuzzy function.
    utl_match.jaro_winkler_similarity (string1, string2) >= 77
    gives more possible values as text fuzzy oralce index. It gives quick result comparing to blurry text indexes. More important, it gets the tuples that are not recovered by the text index fuzzy oracle with a default score of 60. Fuzzy does not work for numeric values, rather utl_match.jaro_winkler_similarity retrieves the numeric values successfully.

    I have two questions.
    1. can I use function utl_match.jaro_winkler_similarity instead of the oracle text index - blurred? Are there restrictions when using this feature of utl_match?
    2. can I create a function based on utl_match.jaro_winkler_similarity index to improve performance?

    Kind regards
    Suresh.

    1. can I use function utl_match.jaro_winkler_similarity instead of the oracle text index - blurred? Are there restrictions when using this feature of utl_match?

    You can use it, but it will be probably slow by itself. I would use Oracle Text contains and blurred in a subquery to limit the lines, using an index first, then use utl_match.jaro_winkler in an external query to further limit. I would not use the default values for fuzzy, but could ensure that it would not remove everything that should not be eliminated. Fuzzy is destined to find similar spellings. Jaro_Winkler is destined to find similar names. If you have strings that include a number, then I would use utl_match.edit_distance_similarity instead of Jaro_Winkler.

    2. can I create a function based on utl_match.jaro_winkler_similarity index to improve performance?

    Yes, if the two strings that you compare are in the same table in the same line. You can also create a view and an index on the view.

  • rules of the clues in the text and oracle query using matches

    Dear all,

    I would like to ask questions about the function of rules and matches the oracle text.
    I followed a lead in the oracle text application developer guide.
    I have a table of rules like this:

    1 oracle
    2 larry or ellison
    3 oracle and text
    market share 4

    Then I create an index in this table. This is necessary for the matches function call. Here's the syntax:

    create index queryx on queries (query_string)
    indexType is ctxsys.ctxrule;

    Then, I noticed that the result on DR$ QUERYX$ I table as follows:

    0 2 2 1 LARRY (BLOB)
    MARKET 0 4 4 1 (BLOB) {MARKET} {ACTION}
    0 1 1 1 ORACLE (BLOB)
    0 3 3 1 ORACLE (BLOB) {TEXT}
    0 2 2 1 ELLISON (BLOB)

    What I want to ask is why do the words 'share' and 'text' appear in the DR table $ QUERYX$?

    When we use the function of the matches, it can search on the result of the index and therefore he walls can't find the word 'action '. Thus, when for example I ask like this:

    Select query_id queries where matches (query_string, "it only to share ten percent of all products sold") > 0

    It will give 0 results since no words in "it only to share ten percent of all products sold ' was in the index table. But in fact it could possibly be classified as category 4 rules which is "market share".

    I tried this in a large data set and get the same result.
    Here are my rules generated from my collection of document:

    1 {REQUIREMENTS of} & {ELICITATION}
    1 {REQUIREMENTS of} ~ {ELICITATION} & {ACTOR}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} & {FURPS}
    1 {REQUIREMENTS OF} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE} & {PROC}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE} ~ {PROC} & {SPEED}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE} ~ {PROC} ~ {SPEED} & {PDF}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE} ~ {PROC} ~ {SPEED} ~ {PDF} & {SET}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE} ~ {PROC} ~ {SPEED} ~ {PDF} ~ {SET} & {UNNECESSARY}
    1 {REQUIREMENTS of} ~ {ELICITATION} ~ {ACTOR} ~ {FURPS} ~ {OUTLINE} ~ {PROC} ~ {SPEED} ~ {PDF} ~ {SET} ~ {UNNECESSARY} & {MISUSE}
    1 {INTERPRETATION} ~ {REQUIREMENTS}
    2 {DESIGN of} & {PERFORMANCE}
    2 {DESIGN of} ~ {REPRESENTATION} & {MAY} & {FOUNDATIO} & {OCTOBER}
    2 {DESIGN of} ~ {REPRESENTATION} & {MAY} & {FOUNDATIO} ~ {OCTOBER} & {PROCEDURAL}
    2 {DESIGN of} ~ {REPRESENTATION} & {MAY} & {FOUNDATIO} ~ {OCTOBER} ~ {PROCEDURAL} & {STRICT}
    2 {DESIGN of} ~ {REPRESENTATION} & {MAY} & {FOUNDATIO} ~ {OCTOBER} ~ {PROCEDURAL} ~ {STRICT} & {ENTER}
    2 {DESIGN of} ~ {REPRESENTATION} & {MAY} & {FOUNDATIO} ~ {OCTOBER} ~ {PROCEDURAL} ~ {STRICT} ~ {ENTER} & {NUMBER} & {LAYER}
    2 {DESIGN OF} ~ {REPRESENTATION} ~ {CAN}
    3 {PM} & {TEST} & {ATTRIBUTION}

    And this is the result of table with a ctxrule index:

    (only the column token_text shown)
    PM
    DESIGN
    DESIGN
    DESIGN
    DESIGN
    DESIGN
    DESIGN
    DESIGN
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    REQUIREMENTS
    INTERPRETATION

    so when I try to file a document with the word in there way, it should produce category 1 (based on rules), but since there is no word 'plan' in the tabel index, matches will return 0 means that the document is classifiedto not any category. I don't understand why this is happening. Everyone knows about it? I'd appreciate any help.
    Thank you very much.

    Share market means that the market immediately followed word on the part of the word, so if you don't have the word share then is not a match. If she had walked or hand, then he would be looking for just one part.

  • Easy to change the owner of the TABLE (and according to indexes and views) available?

    I want to change the Owver from a TABLE (and the owner of all VIEWS and INDEXES in function).
    The only way that I know so far is something like

    CREATE TABLE < newschema >. < table_name > select * from < oldschema >. < tablename >;

    Then, slide old TABLE
    Recreate it possible all the CLUES and the views.

    It is kind of bulky.
    Especially when I don't know what indexes exist for a certain TABLE.
    When I investigate this and I have found 4 indexes so much work needs to be done.

    Is there a shorter, smarter way to accomplish the task.
    I prefer a SINGLE task of all-for-statement

    :-)

    Thank you
    Peter

    Hello
    export of diagram a (exp or expdp)
    import in diagram B (imp or impdp)

  • Error JavaScript prevents the table of contents, Index, search view

    I produced my RoboHelp HTML project webhelp and got an error javascript (this.maCom [...] (' is null or not an object) when you view the result. See the full error text below. So the table of contents, index and search are not displayed. We'll find the javascript error in the status bar of the browser that says "error on page". I found that if I saw the result of robohelp, the browser that launched shows the table of contents, index and search, but has a security warning about a restriction of running scripts or ActiveX controls. However, when I move the generated webhelp on my production server, the help doesn't have the security warning, but produces the error so that the table of contents, index and search do not show. I had done the same process to generate webhelp about 8 months ago but had no error whatsoever. In fact, this version is still in production and works very well.

    In my search for the problem, I found that it is the same error as message of the forum 4063663 (http://forums.adobe.com/message/4063663). I didn't have a second system with RoboHelp to be able to get other whphost.js, however, I have diff had the file generated with that found in template_stock and found only two different lines. These differences were only to replace a couple of variables with static text so I do not replace this file will solve any problem for me. That is the message of only forum I could find who addressed this issue.

    I was originally on RoboHelp 8.0.0 when I first encountered the problem, but has expanded and patched to version 8.0.2 and still had the same problem. I even created a new simple project. Once I moved the simple project on the production server, it also would display the table of contents, index and search.

    The strange thing is that only 8 months ago, I used the same process to generate webhelp without any errors (on 8.0.0). The only thing I can find is there is a Windows XP patch which affected the generation of webhelp. Furthermore, I also tried chrome and also produces the error.

    I don't know what is causing this problem or how to solve the problem. Anyone have any ideas?

    Versions:
    RoboHelp 8.0.2
    Windows XP
    IE 8.0.6001.18702CO
    Chrome 18.0.1025.168 m


    JavaScript error
    -------------------------
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0 .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729;. MS - RTC LM 8; InfoPath.2;. NET4.0C;. NET4.0E)
    Timestamp: Sun, may 2, 2012 16:32 UTC


    Message: Object EXPECTED
    Online: 344
    Char: 2
    Code: 0
    URI: http://server1/robohelp/whphost.js


    Message: 'this.maCom...' is null or not an object
    Online: 171
    Char: 3
    Code: 0
    URI: http://server1/robohelp/whphost.js
    --------------------------

    After further research and testing, I found the update of security for RoboHelp 8 and 9 (http://www.adobe.com/support/security/bulletins/apsb11-23.html) posted as an ad that I had not seen before. I used the feature updates of the product, but that said I was informed and did not include this update.

    Both javascript in this update files solve the problem. The table of contents, index and search now appear.

    Update:
    As I studied the problem further (when writing this reply), I found files that are newer than the latest security patches, I was aware of that. In addition, I discovered that my security organization decided to patch with APSB12-04 I don't know. This patch is why my 8.0.0 installation magically stop working. I see the announcement of the security, the bulletin was not all the required components for specific, that the patch can be applied to 8.0.1 and 8.0.2). (8.0.0, Adobe, please give more information on the ballots of so that organizations that deploy auto will be forced to find out what is running before the update. Information such as whether they apply to all versions of Robohelp 8 or simply a specific version. If APSB12-04 was supposed to apply to all versions of 8, then it did not work. In fact, he broke my installation of 8.0.0 for the generation of webhelp, but a later installation of 8.0.1 and 8.0.2. It seems that they have done a better job for APSB11-23. Maybe the security updates should be a kind of service pack that has a plant and a cancellation process. Right now, my security organization has replaced the files based on the specification in the security bulletin.

    I'll try to patch with APSB12-04 new since I've updated version 8.0.2 database to see if I still have the webhelp. If I can't view the table of contents, I have to take off once more and be 'in non-compliance."

  • Registration with Pearson VIEW Oracle Certification - experiences

    * Please note that I already have an account with Pearson VIEW (but obviously wrt another Test program).



    * I made VERY sure that I hand by Prometric ID before starting the process.

    * on the first attempt through bigdelboy missed the radio button to say that his company was not a partner of oracle, he then allowed by field Oracle ID(Prometric ID) BS as I entered, so I returned it. He then forced me to confirm it on another page.

    * Then, I got the following response:
    Testing Programme Information
    
    Your request to add Oracle Certification Program has been forwarded to our Testing Programme team. If you provided a valid email address, we will notify you when your request has been processed. This typically occurs within one business day. You can also return to this site and check if Oracle Certification Program has been added to your list of Testing Programmes.
    
    Thank you for your interest in Oracle Certification Program!
    I did about 14 September 2009 13:30 CEST.


    I will update the thread in the course of things...


    -Key points are:
    (0) If a recording is in progress with Pearson VIEW for the first time so don't forget your registration information.
    (1) ensure a has its former Prometric ID at hand (and never publish it on the web - or disclose to anyone).
    (2) there may be a delay by adding the test Oracle on its profile program; and we can't plan reviews until it ends.
    -I couldn't imagine that there may be a delay with what happens in the next few weeks,

    (3) somehow I feel nervous about this if I have completed a review of Promteric, or had completed a Prometric Exam in the last days.
    (4) my Pearon VIEW and Prometric addresses match... This could help my cause.



    Please note that this is progressing well so far... I'm really just share my viewpont experience

    Published by: bigdelboy on 14-Sep-2009 08:21 - well, I left 3 hours and tried to tether at Pearson for Oracle and it said:
    Before you continue, your account must be updated. Please go to add the test program to add the Oracle Certification program to your profile.

    Which is the same info, I entered before so I did not need to be reintroduced to it. I'll try again some time later.

    PS: - either by the way, I noticed that... [http://www.pearsonvue.com/about/release/09_09_01_oracle.asp]... so my mugshot and covering scribbles will be captured.

    Published by: bigdelboy on 19-Sep-2009 23:09 (change of title of bigdelboy experiences of experiences that others have contributed in a significant way)

    Comment: Email received at 6:23 with the new user name and temporary password
    -not the choice to use a specific user name. Well, guess this is written down!
    Action: Connect, forced change of the password
    -password strength is monitored. good thing I have a forte in my rep stardard

    Concluding observations:

    My first name, middle initial and name (for printing in the certificate) have been converted to lowercase, without the possibility to fix this. Personal profile page says I need to contact customer service to fix this. (LOL)

    None of my history of test is transferred. The page says it's 'history of Pearson VIEW tests', so I don't know if that still counts.

    It's a "first registration" moderately painless with a VIEW. Just took a little time and patience.

    Certainly, it feels like screens and traffic were never really completely tested by someone outside the development environment - they 'work', but don't let the taste to have been done by a professional organization with expertise in web-oriented systems. I don't know which will happen in a future release.

    Published by: Hans Forbrich on September 22, 2009 09:42

    I'll duplicate some of this in my blog. Maybe it will help others make the transition.

  • Satellite P10 804 of illegible text view

    Hi all

    This is problem 2 weeks ago. in which the text on some site have become illegible. I have not had this problem before. the screen is wuxga, 96 DPI definition.
    tried to reduce wsxga, wxga, wxga definition nothing helps. even increased to 120 DPI no definition no effect.

    any ideas. gladly appreciate any assistance.

    Thank you

    nevodoch

    Hello

    Can you please give more information on this problem? What is generally with display features? You have this problem just with illustration of browser?

    Sorry but on this path, it is not possible to say anything concrete.

  • Delete data indexed all the Oracle SES data or indexed from a given source (Complutense University of MADRID, Discussion Board)

    Hello

    We have configured ITS Oracle 11.2.2.2 with Oracle Webcenter 11.1.1.8 and Complutense University of MADRID.

    We are able to index all data successfully.

    For some test case, I would like to remove all indexed data / indexed data from a particular source of backend and rerun the crawlers.

    Y at - it no SP is who can do the job or any table that I can serve to achieve this?

    Thank you

    Kind regards

    SID

    Hello Siddharth

    I would like to understand why you do not want to delete some items analyzed

    A full analysis will remove existing items and fill the backend with the latest

    In addition, items are visible by their security; so not need something stopping to get indexed

    ~ Theodor

  • Plain text view the online version

    I have many reports coming out only to the format plain text.

    As usual in our header, we have messaging "view online". However although there is no HTML content, when you click on this link in the plain text version, it shows a white screen of HTML with only the footer and header information. The content of plain text is not displayed in a web browser.

    Is there a way around this so the text message is displayed? I checked the option in the settings of electronic mail to only send a text version.

    Thank you

    Hi Mark,

    I think there are two options here.  1.) create a different header that does not include a link in line of sight.  (Or 2). Change the version of html with a simple resemblance of text gross (except that I would like to add a small fitness and links) that way if they click the link, they will see a formatted page.

    See you soon,.

    Ryan

  • How can I get the text of oracle database data?

    We would like to get the text data to oracle database instead of manually in illustrator, is there a way to do it? Thank you.

    I can not extract data from databases. There may be some plug-ins for automation, somewhere, but not in native mode.

    Mylenium

Maybe you are looking for

  • e-mail displays no graphic links

    My incoming emails to view graphics, but now all graphics are links. How to reset incoming mail to download the image for the link?

  • List view for the Finder El Capitan (10.11.39)

    Hi all The gap (if he is) is the following: The small triangle on the left of a folder that is used to open the corresponding folder is not available in some windows and is available in other windows. Please look at the screenshots. In this example "

  • Badr driss

    : happy:

  • Spotlight from break without deleting the index

    Is it possible to pause Spotlight without erasing the existing index? Since the update to EC, I have the problem that a lot of other users is with Spotlight constantly indexing. I still want to be able to use spotlight, but want to be able to pause w

  • [bbui] on bbui pushScreen

    I want the effect that cascades as much, when I click on an item, she slips into the details page. and when I drag to the right or click on the back button, it slips away, return to the position that I was watching.   But in bbui, when I call pushScr